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' }, ];