From 5ae0e9560014234f97e80bd6ccb463aa5690a6d4 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 21 Dec 2025 12:59:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3bfd679..c9cd306 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1269,4 +1269,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From ad526104428750e1cb74a7880219a1654aa8179b Mon Sep 17 00:00:00 2001 From: development Date: Sun, 21 Dec 2025 12:59:16 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bab9d10..084e0ce 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,6 +8,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSocial from '@/components/sections/footer/FooterSocial'; +import TeamCardSeven from '@/components/sections/team/TeamCardSeven'; import { Instagram, Facebook } from "lucide-react"; export default function LandingPage() { @@ -31,6 +32,7 @@ export default function LandingPage() { { name: "Home", id: "home" }, { name: "About", id: "about" }, { name: "Menu", id: "menu" }, + { name: "Team", id: "team" }, { name: "Contact", id: "contact" } ]} button={{ text: "Reserve", href: "contact" }} @@ -122,6 +124,25 @@ export default function LandingPage() { /> +
+ +
+
); -} \ No newline at end of file +} -- 2.49.1