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
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Portfolio",
id: "/portfolio",
},
name: "Portfolio", id: "/portfolio"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="SteelStructureEng"
/>
@@ -50,11 +42,10 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={true}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Contact"
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>
@@ -65,12 +56,7 @@ export default function LandingPage() {
title="Our Reach"
description="Engineering solutions across borders."
names={[
"US North Division",
"EU West Projects",
"Middle East Sites",
"Asian Infrastructure",
"Global Remote Support",
]}
"US North Division", "EU West Projects", "Middle East Sites", "Asian Infrastructure", "Global Remote Support"]}
/>
</div>
@@ -78,16 +64,12 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="SteelStructureEng"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms & Conditions",
href: "#",
}}
text: "Terms & Conditions", href: "#"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}