import { PageHero } from "@/components/page-hero" import { Card, CardContent } from "@/components/ui/card" import { Button } from "@/components/ui/button" import Link from "next/link" import { categories, getCardsByCategory } from "@/data/cards" export default function OurCardsPage() { const categoryData = categories.map((category) => ({ ...category, count: getCardsByCategory(category.slug).length, image: `/category-${category.slug}.jpg`, href: `/category/${category.slug}`, })) return ( <>

Browse our extensive collection of greeting cards for every occasion. Each card is thoughtfully designed and printed on premium paper stock.

{categoryData.map((category) => (
{category.name}

{category.name}

{category.count} designs available

))}
{/* Featured Section */}

Why Our Cards Stand Out

🇨🇦

Satisfaction Guaranteed

We stand behind the quality of every card we sell

🎨

Unique Designs

Original artwork created by talented Canadian artists

♻️

Eco-Friendly

Printed on recycled paper with environmentally conscious practices

{/* CTA Section */}

Need Something Custom?

We can create personalized cards for your special events and occasions

) }