import Link from “next/link”
import Image from “next/image”
import { ArrowRight } from “lucide-react”
import { Button } from “@/components/ui/button”
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from “@/components/ui/card”
export default function Home() {
return (
Drosera World
Your complete guide to sundew plants
-
Home
-
Plant Types
-
Care Guide
-
Cart
{/* Hero Section */}
Discover the Fascinating World of Sundews
Explore our comprehensive guide to Drosera species, their care, and cultivation
Browse Plant Types
{/* Introduction Section */}
What Are Sundews?
Drosera, commonly known as sundews, are one of the largest genera of carnivorous plants, with over 200
species. These fascinating plants capture prey using sticky mucilage secreted from glands on their
modified leaves.
Found on every continent except Antarctica, sundews have adapted to a wide range of habitats and
developed various growth forms, from tiny rosettes to climbing vines.
Learn About Sundew Care
{/* Featured Categories */}
Explore Drosera Categories
{/* Care Basics */}
Sundew Care Basics
View Complete Care Guide
)
}
function CategoryCard({
title,
description,
image,
link,
}: {
title: string
description: string
image: string
link: string
}) {
return (
{title}
{description}
Explore
)
}
function CareCard({
title,
description,
icon,
}: {
title: string
description: string
icon: string
}) {
return (
{title}
{description}
)
}