diff --git a/src/App.tsx b/src/App.tsx index 98579b0..6fb188b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,12 +4,16 @@ import HomePage from './pages/HomePage'; import Contact from './pages/Contact'; import Policy from './pages/Policy'; import Terms from './pages/Terms'; +import About from './pages/About'; +import Menu from './pages/Menu'; export default function App() { return ( }> } /> + } /> + } /> } /> } /> } /> diff --git a/src/components/sections/MenuSection.tsx b/src/components/sections/MenuSection.tsx index 6b2ab9e..3872031 100644 --- a/src/components/sections/MenuSection.tsx +++ b/src/components/sections/MenuSection.tsx @@ -1,37 +1,43 @@ "use client"; -import Card from "@/components/ui/Card" -import TextAnimation from "@/components/ui/TextAnimation" +import Card from "@/components/ui/Card"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; 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" }, - ] + { title: "Espresso", description: "Rich, bold, and smooth.", price: "$3.50", imageSrc: "/espresso.jpg" }, + { title: "Cappuccino", description: "Perfectly steamed milk.", price: "$4.50", imageSrc: "/cappuccino.jpg" }, + { title: "Latte", description: "Creamy and comforting.", price: "$4.75", imageSrc: "/latte.jpg" }, + { title: "Mocha", description: "Decadent chocolate blend.", price: "$5.00", imageSrc: "/mocha.jpg" }, + { title: "Americano", description: "Espresso with hot water.", price: "$3.75", imageSrc: "/americano.jpg" }, + { title: "Flat White", description: "Velvety microfoam finish.", price: "$4.25", imageSrc: "/flat-white.jpg" }, + ]; return ( - ) + ); } \ No newline at end of file diff --git a/src/pages/About.tsx b/src/pages/About.tsx index e93c0d7..386bfb0 100644 --- a/src/pages/About.tsx +++ b/src/pages/About.tsx @@ -1,43 +1,22 @@ -import HeroSplit from "@/components/sections/hero/HeroSplit"; +"use client"; + import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; -import ChecklistTimeline from "@/components/ui/ChecklistTimeline"; +import { Coffee, Users, Award } from "lucide-react"; export default function About() { return ( -
- + - -
-
- -
-
-
+ ); } \ No newline at end of file