From 18c4f141ed6fc14da7140383027d8d30c4bba99a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 11:33:08 +0000 Subject: [PATCH 1/2] Bob AI: Add menu page --- src/App.tsx | 2 + src/components/Layout.tsx | 4 +- src/pages/MenuPage.tsx | 112 ++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 src/pages/MenuPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..f22bf6b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import MenuPage from "@/pages/MenuPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 25e18f1..bc9dd71 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -27,7 +27,9 @@ export default function Layout() { }, { "name": "Testimonials", "href": "#testimonials" - } + }, + { name: "Menu", href: "/menu" }, + ]; return ( diff --git a/src/pages/MenuPage.tsx b/src/pages/MenuPage.tsx new file mode 100644 index 0000000..9ef8e92 --- /dev/null +++ b/src/pages/MenuPage.tsx @@ -0,0 +1,112 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import FeaturesDetailedCards from "@/components/sections/features/FeaturesDetailedCards"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function MenuPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Order Now", href: "/contact" }} + /> + +
+ + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..9687857 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/menu', label: 'Menu', pageFile: 'MenuPage' }, ]; -- 2.49.1 From b88d98c311bd2b75073f648fbc18e2424c862838 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 11:34:09 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/MenuPage.tsx (snippet builder, 1 sections) --- src/pages/MenuPage.tsx | 119 ++++------------------------------------- 1 file changed, 11 insertions(+), 108 deletions(-) diff --git a/src/pages/MenuPage.tsx b/src/pages/MenuPage.tsx index 9ef8e92..dc03d0c 100644 --- a/src/pages/MenuPage.tsx +++ b/src/pages/MenuPage.tsx @@ -1,112 +1,15 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeaturesDetailedCards from "@/components/sections/features/FeaturesDetailedCards"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { ArrowUpRight, Loader2 } from "lucide-react"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import useProducts from "@/hooks/useProducts"; export default function MenuPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Order Now", href: "/contact" }} - /> - -
- - - -
- - -
+ <> +
+ ); -} \ No newline at end of file +} -- 2.49.1