2 Commits

Author SHA1 Message Date
66b9daf992 Update src/app/contact/page.tsx 2026-05-18 15:27:44 +00:00
df7b9045f6 Merge version_2 into main
Merge version_2 into main
2026-05-18 15:25:51 +00:00

View File

@@ -26,21 +26,13 @@ export default function LandingPage() {
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "About", name: "About", id: "/about"},
id: "/about",
},
{ {
name: "Portfolio", name: "Portfolio", id: "/portfolio"},
id: "/portfolio",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
brandName="SteelStructureEng" brandName="SteelStructureEng"
/> />
@@ -50,11 +42,10 @@ export default function LandingPage() {
<ContactCenter <ContactCenter
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Contact" tag="Contact"
title="Get in Touch" title="Get in Touch"
description="Send us your technical inquiry for structural assessment." description="Get a free structural feasibility assessment for your next industrial project."
/> />
</div> </div>
@@ -65,12 +56,7 @@ export default function LandingPage() {
title="Our Reach" title="Our Reach"
description="Engineering solutions across borders." description="Engineering solutions across borders."
names={[ names={[
"US North Division", "US North Division", "EU West Projects", "Middle East Sites", "Asian Infrastructure", "Global Remote Support"]}
"EU West Projects",
"Middle East Sites",
"Asian Infrastructure",
"Global Remote Support",
]}
/> />
</div> </div>
@@ -78,16 +64,12 @@ export default function LandingPage() {
<FooterLogoReveal <FooterLogoReveal
logoText="SteelStructureEng" logoText="SteelStructureEng"
leftLink={{ leftLink={{
text: "Privacy Policy", text: "Privacy Policy", href: "#"}}
href: "#",
}}
rightLink={{ rightLink={{
text: "Terms & Conditions", text: "Terms & Conditions", href: "#"}}
href: "#",
}}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }