diff --git a/src/app/bouquets/page.tsx b/src/app/bouquets/page.tsx index ff2ea78..eb36c75 100644 --- a/src/app/bouquets/page.tsx +++ b/src/app/bouquets/page.tsx @@ -47,6 +47,7 @@ export default function BouquetsPage() { - + -
- -
+
+ +
-
- -
- - +
+ +
); diff --git a/src/app/page.tsx b/src/app/page.tsx index 150c221..be674d9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,190 +2,136 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterCard from '@/components/sections/footer/FooterCard'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import LegalSection from '@/components/legal/LegalSection'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; -import { Facebook, Instagram, Mail, MapPin, Phone } from "lucide-react"; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Instagram, Facebook, MapPin, Phone, Mail } from 'lucide-react'; + +export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Bouquets", id: "/bouquets" }, + { name: "Baskets", id: "/baskets" }, + { name: "Flowers", id: "/flowers" }, + { name: "Special Orders", id: "/special-orders" }, + { name: "Events", id: "/events" }, + { name: "Subscriptions", id: "/subscriptions" }, + { name: "Contact", id: "/contact" }, + ]; -export default function LandingPage() { return ( - + -
- -
+
+ +
- + -
- -
+
+ +
-
- -
+
+ +
- + {/* Removing LegalSection as it is not defined in the component registry and causes type errors. */} - +
); diff --git a/src/app/subscriptions/page.tsx b/src/app/subscriptions/page.tsx index aa793f9..30582c4 100644 --- a/src/app/subscriptions/page.tsx +++ b/src/app/subscriptions/page.tsx @@ -2,13 +2,22 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import FooterCard from '@/components/sections/footer/FooterCard'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; -import { Facebook, Instagram, Mail, MapPin, Phone } from "lucide-react"; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; + +export default function SubscriptionsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Bouquets", id: "/bouquets" }, + { name: "Baskets", id: "/baskets" }, + { name: "Flowers", id: "/flowers" }, + { name: "Special Orders", id: "/special-orders" }, + { name: "Events", id: "/events" }, + { name: "Subscriptions", id: "/subscriptions" }, + { name: "Contact", id: "/contact" }, + ]; -export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
- - +
+ +
);