diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 100d9a2..c9e5fdc 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,270 +1,165 @@ -import AboutTextSplit from '@/components/sections/about/AboutTextSplit'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards'; -import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; -import TeamStackedCards from '@/components/sections/team/TeamStackedCards'; -import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; -import { Award, Coffee } from "lucide-react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; +import ProductVariantCards from "@/components/sections/product/ProductVariantCards"; +import FeaturesDualMedia from "@/components/sections/features/FeaturesDualMedia"; +import PricingMediaCards from "@/components/sections/pricing/PricingMediaCards"; +import TeamStackedCards from "@/components/sections/team/TeamStackedCards"; +import TestimonialAvatarCard from "@/components/sections/testimonial/TestimonialAvatarCard"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBrand from "@/components/sections/footer/FooterBrand"; export default function HomePage() { + const navItems = [ + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Menu", href: "#menu" }, + { name: "Contact", href: "#contact" } + ]; + return ( - <> -
- -
- -
- -
- - - -
- + +
+ +
+
+ +
+ +
+ +
+
+ -
- -
- -
- -
- -
- -
- -
- -
- -
- + { + tag: "Quarterly", + price: "$70", + period: "/qtr", + features: ["3 Bags of Signature Roast", "15% Off Drinks in Cafe", "Exclusive Event Invites"], + primaryButton: { text: "Subscribe", href: "#" }, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1ylpqu" + } + ]} + /> +
+
+ +
+
+ +
+
+ +
+ + ); -} +} \ No newline at end of file