Update src/app/page.tsx

This commit is contained in:
2026-03-26 00:44:17 +00:00
parent 814fc7dd80
commit bb62df0dac

View File

@@ -32,19 +32,19 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "home"},
name: "Home", href: "/"},
{
name: "About", id: "about"},
name: "About", href: "#about"},
{
name: "Services", id: "services"},
name: "Services", href: "/services"},
{
name: "Impact", id: "impact"},
name: "Impact", href: "#impact"},
{
name: "Testimonials", id: "testimonials"},
name: "Testimonials", href: "#testimonials"},
{
name: "FAQ", id: "faq"},
name: "FAQ", href: "#faq"},
{
name: "Contact", id: "contact"},
name: "Contact", href: "#contact"},
]}
brandName="Clayton Electric"
bottomLeftText="Your Trusted Energy Partner"
@@ -62,7 +62,7 @@ export default function LandingPage() {
{
text: "Get a Free Quote", href: "#contact"},
{
text: "Explore Services", href: "#services"},
text: "Explore Services", href: "/services"},
]}
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/wind-farms-fields_23-2149154403.jpg"
@@ -94,7 +94,7 @@ export default function LandingPage() {
"New Home Wiring", "Panel Upgrades & Repairs", "Lighting Installation", "Smart Home Integration"],
buttons: [
{
text: "View Details", href: "/services"},
text: "View Details", href: "/services#res-service"},
],
},
{
@@ -102,7 +102,7 @@ export default function LandingPage() {
"Commercial Wiring", "Electrical System Maintenance", "Energy Efficiency Audits", "Backup Generator Installation"],
buttons: [
{
text: "View Details", href: "/services"},
text: "View Details", href: "/services#com-service"},
],
},
{
@@ -118,7 +118,7 @@ export default function LandingPage() {
"Solar Panel Installation", "EV Charging Stations", "Energy Storage Solutions", "Green Energy Consulting"],
buttons: [
{
text: "Learn More", href: "/services"},
text: "Learn More", href: "/services#renewable"},
],
},
]}
@@ -232,7 +232,7 @@ export default function LandingPage() {
{
items: [
{
label: "Home", href: "#home"},
label: "Home", href: "/"},
{
label: "About Us", href: "/about"},
{
@@ -256,9 +256,9 @@ export default function LandingPage() {
{
items: [
{
label: "Residential", href: "/services#residential"},
label: "Residential", href: "/services#res-service"},
{
label: "Commercial", href: "/services#commercial"},
label: "Commercial", href: "/services#com-service"},
{
label: "Emergency", href: "/services#emergency"},
{
@@ -272,4 +272,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}