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..7c15d82 --- /dev/null +++ b/src/pages/AlShamsRestaurantPage.tsx @@ -0,0 +1,24 @@ +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 ( + <> +
+

Modern Dining

+
+
+
+
+
+
+

Book a Table

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