Update src/app/page.tsx

This commit is contained in:
2026-04-18 08:27:04 +00:00
parent 313a382f01
commit 8564a6410a

View File

@@ -30,17 +30,11 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Configure",
id: "/configure",
},
name: "Configure", id: "/configure"},
{
name: "Engineering",
id: "/engineering",
},
name: "Engineering", id: "/engineering"},
]}
brandName="Aethelgard"
/>
@@ -49,65 +43,40 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboard
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
title="AE-1: PERFORMANCE SYNTHESIS"
description="Where aerodynamic precision meets pure adrenaline. Engineered for the edge."
buttons={[
{
text: "Configure Now",
href: "/configure",
},
text: "Configure Now", href: "/configure"},
{
text: "Learn More",
href: "/engineering",
},
text: "Learn More", href: "/engineering"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWTwT4e7ZbMNeHH1TuQavpTmv3/uploaded-1776500778193-6y4xx147.png"
imageAlt="Aethelgard AE-1 Sports Car"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-handsome-young-businessman-car_23-2147873892.jpg",
alt: "Test driver",
},
src: "http://img.b2bpic.net/free-photo/portrait-handsome-young-businessman-car_23-2147873892.jpg", alt: "Test driver"},
{
src: "http://img.b2bpic.net/free-photo/close-up-equity-analyst-working-proprietary-firm-reading-annual-company-reports-evaluate_482257-132953.jpg",
alt: "Lead engineer",
},
src: "http://img.b2bpic.net/free-photo/close-up-equity-analyst-working-proprietary-firm-reading-annual-company-reports-evaluate_482257-132953.jpg", alt: "Lead engineer"},
{
src: "http://img.b2bpic.net/free-photo/spaceship-crew-member-stressed-by-unknown-hull-breach-causing-alarm-sound_482257-126223.jpg",
alt: "Aerodynamics lead",
},
src: "http://img.b2bpic.net/free-photo/spaceship-crew-member-stressed-by-unknown-hull-breach-causing-alarm-sound_482257-126223.jpg", alt: "Aerodynamics lead"},
{
src: "http://img.b2bpic.net/free-photo/mechanic-using-touchscreen-device_1170-1579.jpg",
alt: "Chassis designer",
},
src: "http://img.b2bpic.net/free-photo/mechanic-using-touchscreen-device_1170-1579.jpg", alt: "Chassis designer"},
{
src: "http://img.b2bpic.net/free-photo/young-man-student-holding-computer_1303-21810.jpg",
alt: "Software architect",
},
src: "http://img.b2bpic.net/free-photo/young-man-student-holding-computer_1303-21810.jpg", alt: "Software architect"},
]}
marqueeItems={[
{
type: "text",
text: "1200 Horsepower",
},
type: "text", text: "1200 Horsepower"},
{
type: "text",
text: "Active Aero",
},
type: "text", text: "Active Aero"},
{
type: "text",
text: "Carbon Monocoque",
},
type: "text", text: "Carbon Monocoque"},
{
type: "text",
text: "Track Dominance",
},
type: "text", text: "Track Dominance"},
{
type: "text",
text: "Future Performance",
},
type: "text", text: "Future Performance"},
]}
/>
</div>
@@ -127,6 +96,9 @@ export default function LandingPage() {
<div id="socialProof" data-section="socialProof">
<SocialProofOne
names={["Aethelgard", "Aero-Dynamics", "Precision-Motorworks", "Global-Engineering", "Velocity-Racing"]}
title="Trusted by Industry Leaders"
description="Our engineering solutions are implemented by the most prestigious teams in the world."
textboxLayout="default"
useInvertedBackground={false}
/>
@@ -134,6 +106,32 @@ export default function LandingPage() {
<div id="testimonial" data-section="testimonial">
<TestimonialCardSixteen
testimonials={[
{
name: "Markus V.", role: "Formula One Driver", content: "The AE-1 handles like a dream at 300km/h."
},
{
name: "Sarah K.", role: "Head of Aero", content: "Unparalleled downforce precision."
},
{
name: "James L.", role: "Automotive Journalist", content: "This is the future of sports performance."
},
{
name: "Elena M.", role: "Lead Chassis Designer", content: "Carbon monocoque mastery at its finest."
},
{
name: "Viktor S.", role: "Performance Specialist", content: "The active aero tech is simply mind-blowing."
}
]}
kpiItems={[
{ value: "98%", description: "Customer Satisfaction" },
{ value: "500+", description: "Simulations Run" },
{ value: "10/10", description: "Track Rating" },
{ value: "24h", description: "Support Response" },
{ value: "5y", description: "Warranty Coverage" }
]}
title="Performance Verified"
description="Client satisfaction through raw engineering data."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -141,7 +139,14 @@ export default function LandingPage() {
</div>
<div id="legal" data-section="legal">
<LegalSection />
<LegalSection
layout="default"
title="Legal Notice"
sections={[
{ title: "Compliance", content: "Fully compliant with road safety standards." },
{ title: "Privacy", content: "Data handled with maximum security." }
]}
/>
</div>
<div id="footer" data-section="footer">
@@ -149,29 +154,19 @@ export default function LandingPage() {
logoText="AETHELGARD"
columns={[
{
title: "Vehicles",
items: [
title: "Vehicles", items: [
{
label: "AE-1",
href: "/configure",
},
label: "AE-1", href: "/configure"},
{
label: "Performance",
href: "/engineering",
},
label: "Performance", href: "/engineering"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "Heritage",
href: "#",
},
label: "Heritage", href: "#"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
]}