"use client"; import { Card } from "@/components/ui/Card" import { TextAnimation } from "@/components/ui/TextAnimation" export default function MenuSection() { const items = [ { title: "Espresso", description: "Rich, bold, and smooth.", price: "$3.50" }, { title: "Cappuccino", description: "Perfectly steamed milk.", price: "$4.50" }, { title: "Latte", description: "Creamy and comforting.", price: "$4.75" }, { title: "Mocha", description: "Decadent chocolate blend.", price: "$5.00" }, { title: "Americano", description: "Espresso with hot water.", price: "$3.75" }, { title: "Flat White", description: "Velvety microfoam finish.", price: "$4.25" }, ] return ( ) }