import { Card, CardContent } from “@/components/ui/card”; import { Button } from “@/components/ui/button”; import { Input } from “@/components/ui/input”; import { motion } from “framer-motion”; export default function StorefrontMockup() { return (
{/* Header */}

MNTY

{/* Hero */}
Eclectic Finds, Made for You

From essentials to experiments – discover what inspires you.

{/* Product Grid */}
{[1, 2, 3, 4, 5, 6].map((item) => ( {`Product

Product {item}

Short product description here.

₹999
))}
{/* Footer */}

© 2025 MNTY – My Need To Yours. All rights reserved.

}