import { PageHero } from "@/components/page-hero" import { Button } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" import Link from "next/link" import { Palette, MessageSquare, CheckCircle, Users } from "lucide-react" export default function CustomCardsPage() { const features = [ { icon: Palette, title: "Custom Design", description: "Our talented artists will work with you to create the perfect design", }, { icon: MessageSquare, title: "Your Message", description: "Choose your font and style for a personalized message", }, { icon: CheckCircle, title: "Digital Proof", description: "Review and approve before we send to manufacture", }, { icon: Users, title: "Bulk Orders", description: "Wholesale discounts available for orders of 100+ cards", }, ] return ( <>

If you are interested in customizing any of our cards for your personal events, our talented artists are happy to take on any challenge.

Whether you want a card for that special someone or a personalized invitation to your birthday, baby shower, graduation ceremony, or any other occasion to which you might invite your friends and family, we can accommodate any of your needs!

Our design staff will work with you to provide your customized message in a font and style of your choosing, which will be confirmed by digital proof before being sent to manufacture.

Due to set up and design costs, minimum orders of 50 cards must be placed for custom orders or additional design fees apply. Wholesale discounts apply on orders of 100 cards or more, ask for more details!

{/* Features Grid */}

How Custom Cards Work

{features.map((feature) => (

{feature.title}

{feature.description}

))}
{/* Occasions Section */}

Perfect for Any Occasion

{[ "Weddings", "Birthdays", "Baby Showers", "Graduations", "Anniversaries", "Corporate Events", "Holidays", "Thank You Cards", "Invitations", "Save the Dates", "Baptisms", "Realtors", // Changed from "Real Estate" to "Realtors" ].map((occasion) => (

{occasion}

))}
{/* CTA Section */}

Ready to Create Your Custom Card?

Contact us today to discuss your custom card needs and get started on your unique design

) }