From 4940359f9b57746c1e4d9cebdf25516fbd62db76 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 13:54:42 +0000 Subject: [PATCH 1/2] Bob AI: Add al-shams-restaurant page --- src/App.tsx | 2 + src/components/Layout.tsx | 2 + src/pages/AlShamsRestaurantPage.tsx | 88 +++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 93 insertions(+) create mode 100644 src/pages/AlShamsRestaurantPage.tsx diff --git a/src/App.tsx b/src/App.tsx index f22bf6b..b85b41e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,12 +3,14 @@ import Layout from './components/Layout'; import HomePage from './pages/HomePage'; import MenuPage from "@/pages/MenuPage"; +import AlShamsRestaurantPage from "@/pages/AlShamsRestaurantPage"; export default function App() { return ( }> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 7787e21..164ba6d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -28,6 +28,8 @@ export default function Layout() { "href": "#contact" }, { name: "Menu", href: "/menu" }, + { name: "Al Shams Restaurant", href: "/al-shams-restaurant" }, + ]; diff --git a/src/pages/AlShamsRestaurantPage.tsx b/src/pages/AlShamsRestaurantPage.tsx new file mode 100644 index 0000000..9bba1aa --- /dev/null +++ b/src/pages/AlShamsRestaurantPage.tsx @@ -0,0 +1,88 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; +import FeaturesMediaGrid from "@/components/sections/features/FeaturesMediaGrid"; +import ContactCta from "@/components/sections/contact/ContactCta"; +import FooterBasic from "@/components/sections/footer/FooterBasic"; + +export default function AlShamsRestaurantPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Book Table", href: "#reservations" }} + /> + +
+ + + + + + +
+ +
+
+ + + +
+ + 📞 + Call + + + 📍 + Directions + + + 🍽️ + Menu + +
+
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 9687857..ae990fc 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -7,4 +7,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/menu', label: 'Menu', pageFile: 'MenuPage' }, + { path: '/al-shams-restaurant', label: 'Al Shams Restaurant', pageFile: 'AlShamsRestaurantPage' }, ]; -- 2.49.1 From c50f9a2f4cddbcc6ca5c3092114619986c4bb070 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 13:55:38 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/AlShamsRestaurantPage.tsx (snippet builder, 3 sections) --- src/pages/AlShamsRestaurantPage.tsx | 104 ++++++---------------------- 1 file changed, 20 insertions(+), 84 deletions(-) diff --git a/src/pages/AlShamsRestaurantPage.tsx b/src/pages/AlShamsRestaurantPage.tsx index 9bba1aa..7c15d82 100644 --- a/src/pages/AlShamsRestaurantPage.tsx +++ b/src/pages/AlShamsRestaurantPage.tsx @@ -1,88 +1,24 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; -import FeaturesMediaGrid from "@/components/sections/features/FeaturesMediaGrid"; -import ContactCta from "@/components/sections/contact/ContactCta"; -import FooterBasic from "@/components/sections/footer/FooterBasic"; +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"; +import { cls } from "@/lib/utils"; export default function AlShamsRestaurantPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Book Table", href: "#reservations" }} - /> - -
- - - - - - -
- -
-
- - - - -
+ <> +
+

Modern Dining

+
+
+
+
+
+
+

Book a Table

+ ); -} \ No newline at end of file +} -- 2.49.1