diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..3ca8ce9 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,54 @@ +"use client"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "home", href: "/" }, + { name: "About", href: "/about" }, + { name: "Menu", id: "menu", href: "/menu" }, + { name: "Products", href: "/products" }, + { name: "Book Table", id: "book-table", href: "/book-table" }, + { name: "Gallery", id: "gallery", href: "/gallery" }, + { name: "Contact", id: "contact", href: "/contact" } + ]; + + return ( + + +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/book-table/page.tsx b/src/app/book-table/page.tsx new file mode 100644 index 0000000..a870edd --- /dev/null +++ b/src/app/book-table/page.tsx @@ -0,0 +1,41 @@ +"use client"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function BookTablePage() { + const navItems = [ + { name: "Home", id: "home", href: "/" }, + { name: "Menu", id: "menu", href: "/menu" }, + { name: "Book Table", id: "book-table", href: "/book-table" }, + { name: "Gallery", id: "gallery", href: "/gallery" }, + { name: "Contact", id: "contact", href: "/contact" } + ]; + + return ( + + +
+

Book Your Table

+

Reserve a spot for an unforgettable dining experience at La Bella Italia.

+
+
+ ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..24fcf3e --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,41 @@ +"use client"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "home", href: "/" }, + { name: "Menu", id: "menu", href: "/menu" }, + { name: "Book Table", id: "book-table", href: "/book-table" }, + { name: "Gallery", id: "gallery", href: "/gallery" }, + { name: "Contact", id: "contact", href: "/contact" } + ]; + + return ( + + +
+

Contact Us

+

We'd love to hear from you! Reach out for reservations, inquiries, or feedback.

+
+
+ ); +} \ No newline at end of file diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..bbd630b --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,41 @@ +"use client"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function GalleryPage() { + const navItems = [ + { name: "Home", id: "home", href: "/" }, + { name: "Menu", id: "menu", href: "/menu" }, + { name: "Book Table", id: "book-table", href: "/book-table" }, + { name: "Gallery", id: "gallery", href: "/gallery" }, + { name: "Contact", id: "contact", href: "/contact" } + ]; + + return ( + + +
+

Our Gallery

+

Take a visual tour of our restaurant and some of our exquisite dishes.

+
+
+ ); +} \ No newline at end of file diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 13094a8..9a30569 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -32,6 +32,10 @@ export default function MenuPage() { animateOnLoad={true} /> +
+

Our Delicious Menu

+

Explore a wide array of authentic Italian dishes, crafted with the freshest ingredients.

+
); } \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 2e068c3..9c93ebb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,16 +13,16 @@ export default function HomePage() { return (