Update src/app/page.tsx

This commit is contained in:
2026-05-07 14:25:34 +00:00
parent 8a98663914
commit d9a35ae2ce

View File

@@ -2,14 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqBase from '@/components/sections/faq/FaqBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
export default function LandingPage() {
return (
@@ -19,45 +14,47 @@ export default function LandingPage() {
borderRadius="pill"
contentWidth="small"
sizing="medium"
background="noiseDiagonalGradient"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
background="none"
cardStyle="outline"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Open Vibes"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
]}
brandName="Open Vibes"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="Turning Brands Into Digital Experiences"
description="We help businesses grow with powerful content, cinematic visuals, AI marketing, and performance-driven strategies."
testimonials={[]}
buttons={[
{ text: "Get Started", href: "/contact" },
]}
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="Turning Brands Into Digital Experiences"
description="We help businesses grow with powerful content, cinematic visuals, AI marketing, and performance-driven strategies."
testimonials={[]}
buttons={[
{ text: "Get Started", href: "/contact" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Open Vibes"
columns={[
{ items: [{ label: "About", href: "/about" }, { label: "Pricing", href: "/pricing" }] },
{ items: [{ label: "Contact", href: "/contact" }] },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Open Vibes"
columns={[
{ items: [{ label: "About", href: "/about" }, { label: "Pricing", href: "/pricing" }, { label: "Portfolio", href: "/portfolio" }] },
{ items: [{ label: "Contact", href: "/contact" }, { label: "Services", href: "/services" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);