diff --git a/src/app/page.tsx b/src/app/page.tsx index 1b4ba9e..2c55325 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,23 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Products", id: "/#products" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, + ]; + + const footerColumns = [ + { title: "Shop", items: [{ label: "Bouquets", href: "/#products" }, { label: "Seasonal", href: "/#products" }, { label: "Our Shop", href: "/shop" }] }, + { title: "Studio", items: [{ label: "About Us", href: "/#about" }, { label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }, + { title: "Resources", items: [{ label: "Blog", href: "/blog" }] }, + { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, + ]; + return ( -
- + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- -
+
); }