From 2b4f17d45067d933762704e21560be6eee72d1fd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 14 Apr 2026 18:47:53 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 71 ++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 63 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a144f7e..01c0691 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,30 +9,85 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterBase from '@/components/sections/footer/FooterBase'; export default function HomePage() { - const navItems = [{ name: 'Home', id: 'hero' }, { name: 'Tables', id: 'tables' }, { name: 'Reviews', id: 'reviews' }, { name: 'Contact', id: 'contact' }]; + const navItems = [ + { name: 'Home', id: 'hero' }, + { name: 'Tables', id: 'tables' }, + { name: 'Reviews', id: 'reviews' }, + { name: 'Contact', id: 'contact' } + ]; return ( - +
- +
- +
- +
- +
- +
); -- 2.49.1