import React from "react"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { motion } from "framer-motion"; export default function EggJuicyWebsite() { return (
{/* Hero Block */}
eggjuicy

Where Design Breaks the Mold

{/* Product Page */}

Our Products

{["Artwork", "Posters", "Apparel", "Design Commissions"].map((category) => (

{category}

))}
{/* About Page */}

Our Story

Follow the scroll to crack open our journey from raw idea to juicy creation. Eggjuicy was built on the belief that creativity, like eggs, was meant to be cracked open and enjoyed.

{["Artist Egg", "Designer Egg", "Tech Egg"].map((role, idx) => (
{role.split(" ")[0]}

{role}

))}
); }