The Droseria

A place for information about Droseras

Home page

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

Drosera World

Your comprehensive resource for sundew information, care guides, and plants.

Quick Links

  • Home

  • Plant Types

  • Care Guide

  • Cart

Newsletter

Subscribe for updates on new plants and care tips.

Subscribe

© {new Date().getFullYear()} Drosera World. All rights reserved.

)
}

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 (

{icon}

{title}

{description}

)
}