13 Commits

Author SHA1 Message Date
96136dc269 Update src/app/page.tsx 2026-04-18 05:38:59 +00:00
68b8204f21 Merge version_8 into main
Merge version_8 into main
2026-04-18 05:30:50 +00:00
bba6844f20 Update src/app/page.tsx 2026-04-18 05:30:47 +00:00
7901dd0c69 Merge version_7 into main
Merge version_7 into main
2026-04-18 05:30:21 +00:00
0c30fad9fa Merge version_7 into main
Merge version_7 into main
2026-04-18 05:30:18 +00:00
1726b193a0 Merge version_7 into main
Merge version_7 into main
2026-04-18 05:29:26 +00:00
10cd5a58eb Merge version_7 into main
Merge version_7 into main
2026-04-18 05:29:18 +00:00
76b77619b7 Merge version_7 into main
Merge version_7 into main
2026-04-18 05:28:48 +00:00
13b0483442 Merge version_6 into main
Merge version_6 into main
2026-04-18 05:28:48 +00:00
9d7016ddb8 Merge version_5 into main
Merge version_5 into main
2026-04-18 05:28:37 +00:00
3adf4cb7a5 Merge version_4 into main
Merge version_4 into main
2026-04-18 05:28:30 +00:00
5e2de9221d Merge version_3 into main
Merge version_3 into main
2026-04-18 05:28:27 +00:00
052a8d3d76 Merge version_2 into main
Merge version_2 into main
2026-04-18 05:19:14 +00:00

View File

@@ -7,7 +7,7 @@ import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -35,7 +35,7 @@ export default function LandingPage() {
{ {
name: "Features", id: "features"}, name: "Features", id: "features"},
{ {
name: "Pricing", id: "pricing"}, name: "Pricing", id: "products"},
{ {
name: "Testimonials", id: "testimonials"}, name: "Testimonials", id: "testimonials"},
{ {
@@ -43,12 +43,12 @@ export default function LandingPage() {
]} ]}
brandName="FileVault" brandName="FileVault"
button={{ button={{
text: "Get Started", href: "#contact"}} text: "Get Started", href: "/contact"}}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitDualMedia <HeroBillboardCarousel
background={{ background={{
variant: "plain"}} variant: "plain"}}
title="Master Your Laptop Files" title="Master Your Laptop Files"
@@ -56,9 +56,9 @@ export default function LandingPage() {
tag="Personalized Organization" tag="Personalized Organization"
buttons={[ buttons={[
{ {
text: "Get Started", href: "#contact"}, text: "Get Started", href: "/contact"},
{ {
text: "View Features", href: "#features"}, text: "View Features", href: "/features"},
]} ]}
mediaItems={[ mediaItems={[
{ {
@@ -66,9 +66,6 @@ export default function LandingPage() {
{ {
imageSrc: "http://img.b2bpic.net/free-photo/desktop-pc-wooden-desk-showcases-infographics-client-reach-data_482257-126353.jpg", imageAlt: "Organized digital workspace"} imageSrc: "http://img.b2bpic.net/free-photo/desktop-pc-wooden-desk-showcases-infographics-client-reach-data_482257-126353.jpg", imageAlt: "Organized digital workspace"}
]} ]}
mediaAnimation="slide-up"
rating={5}
ratingText="Trusted by 10,000+ power users"
/> />
</div> </div>
@@ -205,7 +202,7 @@ export default function LandingPage() {
text="Ready to clean up your folders? Get started with FileVault today." text="Ready to clean up your folders? Get started with FileVault today."
buttons={[ buttons={[
{ {
text: "Contact Support", href: "mailto:support@filevault.com"}, text: "Contact Support", href: "/contact"},
]} ]}
/> />
</div> </div>
@@ -216,25 +213,25 @@ export default function LandingPage() {
{ {
title: "Product", items: [ title: "Product", items: [
{ {
label: "Features", href: "#features"}, label: "Features", href: "/features"},
{ {
label: "Pricing", href: "#pricing"}, label: "Pricing", href: "/products"},
], ],
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ {
label: "About", href: "#"}, label: "About", href: "/about"},
{ {
label: "Contact", href: "#contact"}, label: "Contact", href: "/contact"},
], ],
}, },
{ {
title: "Legal", items: [ title: "Legal", items: [
{ {
label: "Privacy", href: "#"}, label: "Privacy", href: "/privacy"},
{ {
label: "Terms", href: "#"}, label: "Terms", href: "/terms"},
], ],
}, },
]} ]}
@@ -244,4 +241,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }