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