5 Commits

Author SHA1 Message Date
c90b4f86dc Merge version_4 into main
Merge version_4 into main
2026-06-10 03:51:25 +00:00
e37ef1c395 Update src/app/team/page.tsx 2026-06-10 03:51:22 +00:00
565ff34c9f Update src/app/page.tsx 2026-06-10 03:51:21 +00:00
ef7be920c8 Merge version_3 into main
Merge version_3 into main
2026-06-09 19:46:17 +00:00
40ea389812 Merge version_3 into main
Merge version_3 into main
2026-06-09 19:45:46 +00:00
2 changed files with 26 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "#home"},
name: "Home", id: "/"},
{
name: "Services", id: "#services"},
{
@@ -44,14 +44,17 @@ export default function LandingPage() {
name: "Testimonials", id: "#testimonials"},
{
name: "FAQ", id: "#faq"},
{
name: "Team", id: "/team"},
{
name: "Contact Us", id: "#contact"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4wl321"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EufN7Do3A2uOjy2MolAbblJK9g/uploaded-1781063380749-40bjsf5u.jpg"
logoAlt="USA HVAC Services Logo"
brandName="USA HVAC Services"
button={{
text: "Get a Free Quote", href: "#contact"}}
logoImageClassName="bg-transparent"
/>
</div>
@@ -346,4 +349,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -24,18 +24,28 @@ export default function TeamPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "#home" },
{ name: "HVAC Services", id: "#services" },
{ name: "Reviews", id: "#testimonials" },
{ name: "Team", id: "/team" },
{ name: "About Us", id: "#about" },
{ name: "Locations", id: "/locations" },
{ name: "Contact Us", id: "#contact" }
{
name: "Home", id: "/"},
{
name: "Services", id: "#services"},
{
name: "About Us", id: "#about"},
{
name: "Metrics", id: "#metrics"},
{
name: "Testimonials", id: "#testimonials"},
{
name: "FAQ", id: "#faq"},
{
name: "Team", id: "/team"},
{
name: "Contact Us", id: "#contact"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/default-logo-transparent.png?_wi=1"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EufN7Do3A2uOjy2MolAbblJK9g/uploaded-1781063380749-40bjsf5u.jpg"
logoAlt="USA HVAC Services Logo"
brandName="USA HVAC Services"
button={{ text: "Book Now", href: "#contact" }}
logoImageClassName="bg-transparent"
/>
</div>
@@ -82,7 +92,7 @@ export default function TeamPage() {
{ label: "FAQ", href: "#faq" },
{ label: "Blog", href: "#" },
{ label: "Customer Stories", href: "#testimonials" },
{ label: "Service Areas", href: "/locations" }
{ label: "Service Areas", href: "#" }
]
},
{
@@ -101,4 +111,4 @@ export default function TeamPage() {
</ReactLenis>
</ThemeProvider>
);
}
}