1 Commits

Author SHA1 Message Date
d206580724 Update src/app/page.tsx 2026-04-17 23:23:02 +00:00

View File

@@ -29,68 +29,43 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Services", name: "Services", id: "/services"},
id: "/services",
},
{ {
name: "About", name: "About", id: "/about"},
id: "/about",
},
{ {
name: "Projects", name: "Projects", id: "/projects"},
id: "/projects",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
brandName="Arm-Ing" brandName="Arm-Ing"
button={{ button={{
text: "Request a Quote", text: "Request a Quote", href: "/contact"}}
href: "/contact",
}}
/> />
</div> </div>
<div id="hero-main" data-section="hero-main"> <div id="hero-main" data-section="hero-main">
<HeroBillboardGallery <HeroBillboardGallery
background={{ background={{
variant: "gradient-bars", variant: "gradient-bars"}}
}}
title="Precision in Every Structure." title="Precision in Every Structure."
description="Leading civil engineering solutions in Prizren with over a decade of professional excellence by Halil Bytyqi." description="Leading civil engineering solutions in Prizren with over a decade of professional excellence by Halil Bytyqi."
buttons={[ buttons={[
{ {
text: "Request a Quote", text: "Request a Quote", href: "/contact"},
href: "/contact",
},
]} ]}
mediaItems={[ mediaItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/panoramic-view-brooklyn-bridge-new-york-city_268835-766.jpg", imageSrc: "http://img.b2bpic.net/free-photo/panoramic-view-brooklyn-bridge-new-york-city_268835-766.jpg?_wi=1", imageAlt: "Construction project"},
imageAlt: "Construction project",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/woman-african-american-worker-standing-with-plan-factory_1303-30604.jpg", imageSrc: "http://img.b2bpic.net/free-photo/woman-african-american-worker-standing-with-plan-factory_1303-30604.jpg?_wi=1", imageAlt: "Architecture plan"},
imageAlt: "Architecture plan",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-construction_23-2150772874.jpg", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-construction_23-2150772874.jpg?_wi=1", imageAlt: "Engineering oversight"},
imageAlt: "Engineering oversight",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-gray-concrete-bridge-portugal_181624-1672.jpg", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-gray-concrete-bridge-portugal_181624-1672.jpg?_wi=1", imageAlt: "Low angle shot of a gray concrete bridge in Portugal"},
imageAlt: "Low angle shot of a gray concrete bridge in Portugal",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/large-building-site_1127-3252.jpg", imageSrc: "http://img.b2bpic.net/free-photo/large-building-site_1127-3252.jpg?_wi=1", imageAlt: "large building-site"},
imageAlt: "large building-site",
},
]} ]}
mediaAnimation="blur-reveal" mediaAnimation="blur-reveal"
/> />
@@ -105,24 +80,12 @@ export default function LandingPage() {
description="Delivering excellence through engineering." description="Delivering excellence through engineering."
metrics={[ metrics={[
{ {
id: "m1", id: "m1", value: "150+", title: "Projects Completed", items: [
value: "150+", "Residential builds", "Commercial sites", "Infrastructure projects"],
title: "Projects Completed",
items: [
"Residential builds",
"Commercial sites",
"Infrastructure projects",
],
}, },
{ {
id: "m2", id: "m2", value: "12", title: "Years Experience", items: [
value: "12", "Professional expertise", "Local market knowledge", "Regulatory compliance"],
title: "Years Experience",
items: [
"Professional expertise",
"Local market knowledge",
"Regulatory compliance",
],
}, },
]} ]}
/> />
@@ -136,15 +99,9 @@ export default function LandingPage() {
description="Common inquiries about our engineering process." description="Common inquiries about our engineering process."
faqs={[ faqs={[
{ {
id: "q1", id: "q1", title: "What regions do you serve?", content: "We primarily serve the Prizren region and surrounding areas."},
title: "What regions do you serve?",
content: "We primarily serve the Prizren region and surrounding areas.",
},
{ {
id: "q2", id: "q2", title: "How do I start a project?", content: "Contact us via the request form to schedule a site consultation."},
title: "How do I start a project?",
content: "Contact us via the request form to schedule a site consultation.",
},
]} ]}
faqsAnimation="slide-up" faqsAnimation="slide-up"
/> />
@@ -157,11 +114,7 @@ export default function LandingPage() {
title="Trusted Partners" title="Trusted Partners"
description="Working with industry-leading firms." description="Working with industry-leading firms."
names={[ names={[
"Prizren Construction Corp", "Prizren Construction Corp", "Urban Development Group", "Structural Safety Experts", "Architectural Design Hub"]}
"Urban Development Group",
"Structural Safety Experts",
"Architectural Design Hub",
]}
/> />
</div> </div>
@@ -169,11 +122,11 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "plain", variant: "plain"}}
}} tag="Project Inquiry"
tag="Newsletter" title="Start Your Project"
title="Stay updated" description="Send us your requirements, and we will get back to you with a professional assessment."
description="Receive news on our latest construction projects." buttonText="Send Inquiry"
/> />
</div> </div>
@@ -181,25 +134,17 @@ export default function LandingPage() {
<FooterBase <FooterBase
columns={[ columns={[
{ {
title: "Navigation", title: "Navigation", items: [
items: [
{ {
label: "Home", label: "Home", href: "/"},
href: "/",
},
{ {
label: "Projects", label: "Projects", href: "/projects"},
href: "/projects",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "Contact", label: "Contact", href: "/contact"},
href: "/contact",
},
], ],
}, },
]} ]}