From 64efa6cc8a7f130c29c94503a2f51b54731741e0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 01:31:21 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 234 +++++++++++++++++------------------------------ 1 file changed, 84 insertions(+), 150 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 610fa7d..178f0b2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; -import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Award, Heart, Cloud, Zap, Star, HelpCircle, Mail, Twitter, Linkedin, Github } from "lucide-react"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Cloud, Package, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -31,9 +28,8 @@ export default function LandingPage() { navItems={[ { name: "Features", id: "features" }, { name: "About", id: "about" }, - { name: "Solutions", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Products", id: "products" }, + { name: "Pricing", id: "pricing" }, ]} brandName="FileMaker Cloud" bottomLeftText="Enterprise Solutions" @@ -42,7 +38,7 @@ export default function LandingPage() {
-
-
- -
-
-
-
- +
-
- +
-
- -
- -
- -
- ); -} \ No newline at end of file +} -- 2.49.1