4 Commits

Author SHA1 Message Date
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 <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ {
name: "Home", id: "#home"}, name: "Home", id: "/"},
{ {
name: "Services", id: "#services"}, name: "Services", id: "#services"},
{ {
@@ -44,14 +44,17 @@ export default function LandingPage() {
name: "Testimonials", id: "#testimonials"}, name: "Testimonials", id: "#testimonials"},
{ {
name: "FAQ", id: "#faq"}, name: "FAQ", id: "#faq"},
{
name: "Team", id: "/team"},
{ {
name: "Contact Us", id: "#contact"}, 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" logoAlt="USA HVAC Services Logo"
brandName="USA HVAC Services" brandName="USA HVAC Services"
button={{ button={{
text: "Get a Free Quote", href: "#contact"}} text: "Get a Free Quote", href: "#contact"}}
logoImageClassName="bg-transparent"
/> />
</div> </div>
@@ -346,4 +349,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -24,18 +24,28 @@ export default function TeamPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ name: "Home", id: "#home" }, {
{ name: "HVAC Services", id: "#services" }, name: "Home", id: "/"},
{ name: "Reviews", id: "#testimonials" }, {
{ name: "Team", id: "/team" }, name: "Services", id: "#services"},
{ name: "About Us", id: "#about" }, {
{ name: "Locations", id: "/locations" }, name: "About Us", id: "#about"},
{ name: "Contact Us", id: "#contact" } {
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" logoAlt="USA HVAC Services Logo"
brandName="USA HVAC Services" brandName="USA HVAC Services"
button={{ text: "Book Now", href: "#contact" }} button={{ text: "Book Now", href: "#contact" }}
logoImageClassName="bg-transparent"
/> />
</div> </div>
@@ -82,7 +92,7 @@ export default function TeamPage() {
{ label: "FAQ", href: "#faq" }, { label: "FAQ", href: "#faq" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
{ label: "Customer Stories", href: "#testimonials" }, { label: "Customer Stories", href: "#testimonials" },
{ label: "Service Areas", href: "/locations" } { label: "Service Areas", href: "#" }
] ]
}, },
{ {
@@ -101,4 +111,4 @@ export default function TeamPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }