8 Commits

Author SHA1 Message Date
f08da988d3 Update src/app/layout.tsx 2026-03-08 13:29:48 +00:00
ecdabcce2c Update src/app/page.tsx 2026-03-08 13:28:55 +00:00
c89bfc08c9 Update src/app/layout.tsx 2026-03-08 13:28:55 +00:00
15fb753c11 Merge version_1 into main
Merge version_1 into main
2026-03-07 21:38:53 +00:00
f44e32b96a Merge version_1 into main
Merge version_1 into main
2026-03-07 21:38:06 +00:00
ae1e9f96c6 Merge version_1 into main
Merge version_1 into main
2026-03-07 21:36:04 +00:00
830a97961a Merge version_1 into main
Merge version_1 into main
2026-03-07 21:34:04 +00:00
ac4703d918 Merge version_1 into main
Merge version_1 into main
2026-03-07 21:32:05 +00:00
2 changed files with 56 additions and 1436 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -29,16 +29,16 @@ export default function HomePage() {
const footerColumns = [
{
title: "Services", items: [
{ label: "Roof Repairs", href: "/services" },
{ label: "Flat Roof Installation", href: "/services" },
{ label: "Chimney Repairs", href: "/services" },
{ label: "Guttering & Drainage", href: "/services" },
{ label: "Emergency Roofing", href: "/services" },
{ label: "Roof Repairs", href: "#services" },
{ label: "Flat Roof Installation", href: "#services" },
{ label: "Chimney Repairs", href: "#services" },
{ label: "Guttering & Drainage", href: "#services" },
{ label: "Emergency Roofing", href: "#services" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "About Us", href: "#why-us" },
{ label: "Reviews", href: "#reviews" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "#" },
@@ -73,7 +73,8 @@ export default function HomePage() {
brandName="Lavelle Roofing"
navItems={navItems}
button={{
text: "Get Free Quote", href: "#contact"}}
text: "Get Free Quote", onClick: handleGetQuoteClick,
}}
animateOnLoad={true}
/>
</div>
@@ -108,7 +109,8 @@ export default function HomePage() {
]}
buttons={[
{
text: "Get Free Quote", href: "#contact"},
text: "Get Free Quote", onClick: handleGetQuoteClick,
},
{
text: "Call Now", onClick: () => {
window.location.href = "tel:+1234567890";
@@ -164,25 +166,49 @@ export default function HomePage() {
{
id: "1", title: "Roof Repairs", description: "Leaks, broken tiles, storm damage and general roof issues fixed quickly and professionally.", tag: "Emergency", imageSrc: "http://img.b2bpic.net/free-photo/crop-skateboarder-man-ramp_23-2147678250.jpg?_wi=2", imageAlt: "Professional roof repair work", buttons: [
{
text: "Learn More", href: "/services"},
text: "Learn More", onClick: () => {
const servicesSection = document.getElementById("services");
if (servicesSection) {
servicesSection.scrollIntoView({ behavior: "smooth" });
}
},
},
],
},
{
id: "2", title: "Flat Roof Installation", description: "Durable modern flat roofing systems built to last with professional installation.", tag: "Installation", imageSrc: "http://img.b2bpic.net/free-photo/bison-race-obstacle-race-sports-competition-belarus-may-2019_1321-3203.jpg?_wi=2", imageAlt: "Modern flat roof installation", buttons: [
{
text: "Learn More", href: "/services"},
text: "Learn More", onClick: () => {
const servicesSection = document.getElementById("services");
if (servicesSection) {
servicesSection.scrollIntoView({ behavior: "smooth" });
}
},
},
],
},
{
id: "3", title: "Chimney Repairs", description: "Repointing, chimney restoration and leak prevention with expert workmanship.", tag: "Repairs", imageSrc: "http://img.b2bpic.net/free-photo/plasterer-renovating-indoor-walls_1150-9959.jpg?_wi=2", imageAlt: "Professional chimney repair", buttons: [
{
text: "Learn More", href: "/services"},
text: "Learn More", onClick: () => {
const servicesSection = document.getElementById("services");
if (servicesSection) {
servicesSection.scrollIntoView({ behavior: "smooth" });
}
},
},
],
},
{
id: "4", title: "Guttering & Drainage", description: "Repairs, replacements and cleaning to prevent damp issues and water damage.", tag: "Maintenance", imageSrc: "http://img.b2bpic.net/free-photo/focused-plumber-working-assembling-pipelines-install-plumbing-system-while-building-new-house_662251-539.jpg?_wi=2", imageAlt: "Professional guttering installation", buttons: [
{
text: "Learn More", href: "/services"},
text: "Learn More", onClick: () => {
const servicesSection = document.getElementById("services");
if (servicesSection) {
servicesSection.scrollIntoView({ behavior: "smooth" });
}
},
},
],
},
{
@@ -272,4 +298,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}