Update src/app/page.tsx

This commit is contained in:
2026-04-08 08:12:13 +00:00
parent db45c23c74
commit 501d0441b9

View File

@@ -28,26 +28,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="GrowFrame"
/>
@@ -55,14 +40,12 @@ export default function LandingPage() {
<div id="home-hero" data-section="home-hero">
<HeroBillboardScroll
background="sparkles-gradient"
background={{ variant: "sparkles-gradient" }}
title="Future-Proofing Your Enterprise"
description="GrowFrame Solutions delivers secure, high-performance architecture built for the modern era."
buttons={[
{
text: "Get Started",
href: "/contact",
},
text: "Get Started", href: "/contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/3d-render-abstract-with-connecting-lines-dots-modern-communications_1048-13763.jpg"
/>
@@ -77,40 +60,15 @@ export default function LandingPage() {
description="What industry leaders say about our engineering."
testimonials={[
{
id: "t1",
name: "Sarah J.",
handle: "@techcorp",
testimonial: "Exceptional security standards.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg",
},
id: "t1", name: "Sarah J.", handle: "@techcorp", testimonial: "Exceptional security standards.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg"},
{
id: "t2",
name: "Mark L.",
handle: "@startupx",
testimonial: "Transformed our cloud stack.",
imageSrc: "http://img.b2bpic.net/free-photo/aged-middle-expression-calling-business_1262-2838.jpg",
},
id: "t2", name: "Mark L.", handle: "@startupx", testimonial: "Transformed our cloud stack.", imageSrc: "http://img.b2bpic.net/free-photo/aged-middle-expression-calling-business_1262-2838.jpg"},
{
id: "t3",
name: "Elena P.",
handle: "@fintech",
testimonial: "Reliable and precise delivery.",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-drag-queen-indoors_23-2149556820.jpg",
},
id: "t3", name: "Elena P.", handle: "@fintech", testimonial: "Reliable and precise delivery.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-drag-queen-indoors_23-2149556820.jpg"},
{
id: "t4",
name: "David W.",
handle: "@enterprise",
testimonial: "Best in class architecture.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg",
},
id: "t4", name: "David W.", handle: "@enterprise", testimonial: "Best in class architecture.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg"},
{
id: "t5",
name: "Sophie K.",
handle: "@growth",
testimonial: "Highly recommended team.",
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blond-female-dressed-white-shirt-red-eyeglasses_613910-14657.jpg",
},
id: "t5", name: "Sophie K.", handle: "@growth", testimonial: "Highly recommended team.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blond-female-dressed-white-shirt-red-eyeglasses_613910-14657.jpg"},
]}
/>
</div>
@@ -124,15 +82,9 @@ export default function LandingPage() {
faqsAnimation="slide-up"
faqs={[
{
id: "q1",
title: "Is security included?",
content: "Yes, security is foundational.",
},
id: "q1", title: "Is security included?", content: "Yes, security is foundational."},
{
id: "q2",
title: "What is the timeline?",
content: "Usually 3-6 months based on scope.",
},
id: "q2", title: "What is the timeline?", content: "Usually 3-6 months based on scope."},
]}
/>
</div>
@@ -144,12 +96,7 @@ export default function LandingPage() {
title="Trusted By Global Brands"
description="Driving results for market leaders."
names={[
"CloudScale",
"SecureNet",
"FinData",
"AutomationPro",
"GlobalOps",
]}
"CloudScale", "SecureNet", "FinData", "AutomationPro", "GlobalOps"]}
/>
</div>
@@ -157,14 +104,11 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
text="Ready to transform your infrastructure?"
buttons={[
{
text: "Start Consultation",
href: "/contact",
},
text: "Start Consultation", href: "/contact"},
]}
/>
</div>
@@ -174,38 +118,25 @@ export default function LandingPage() {
logoText="GrowFrame Solutions"
columns={[
{
title: "Product",
items: [
title: "Product", items: [
{
label: "Services",
href: "/services",
},
label: "Services", href: "/services"},
{
label: "Pricing",
href: "/pricing",
},
label: "Pricing", href: "/pricing"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy",
},
label: "Privacy Policy", href: "/privacy"},
],
},
]}