1 Commits

Author SHA1 Message Date
4398fceb14 Update src/app/page.tsx 2026-03-04 18:49:37 +00:00
2 changed files with 28 additions and 29 deletions

View File

@@ -1,20 +1,29 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Union Roofing | Expert Roofing Solutions & Installation", description: "Premier roofing services with 25+ years experience. Expert installation, repair, and maintenance for residential and commercial properties. Free quote available.", keywords: "roofing, roof installation, roof repair, roofing contractor, professional roofer, residential roofing, commercial roofing", openGraph: {
title: "Union Roofing - Trusted Roofing Services", description: "Get expert roofing solutions from licensed professionals with 25+ years of experience. Free inspections and quotes available.", siteName: "Union Roofing", type: "website"
},
title: "Union Roofing - Trusted Roofing Services", description: "Get expert roofing solutions from licensed professionals with 25+ years of experience. Free inspections and quotes available.", siteName: "Union Roofing", type: "website"},
twitter: {
card: "summary_large_image", title: "Union Roofing - Premier Roofing Services", description: "Expert roofing installation, repair, and maintenance. 2000+ satisfied customers."
},
card: "summary_large_image", title: "Union Roofing - Premier Roofing Services", description: "Expert roofing installation, repair, and maintenance. 2000+ satisfied customers."},
robots: {
index: true,
follow: true,
@@ -29,7 +38,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -85,16 +85,13 @@ export default function LandingPage() {
features={[
{
id: 1,
tag: "Installation", title: "New Roof Installation", subtitle: "Expert installation with premium materials", description: "We install new roofing systems using high-quality materials and industry-best practices. Our experienced team ensures proper ventilation, drainage, and structural integrity for long-lasting protection.", imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530697.jpg", imageAlt: "Roof installation process"
},
tag: "Installation", title: "New Roof Installation", subtitle: "Expert installation with premium materials", description: "We install new roofing systems using high-quality materials and industry-best practices. Our experienced team ensures proper ventilation, drainage, and structural integrity for long-lasting protection.", imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530697.jpg", imageAlt: "Roof installation process"},
{
id: 2,
tag: "Repair", title: "Roof Repair & Maintenance", subtitle: "Fast, reliable repair services", description: "From minor leaks to major damage, we provide prompt and effective roof repair services. Regular maintenance extends your roof's lifespan and prevents costly emergency repairs down the line.", imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530695.jpg", imageAlt: "Roof repair work"
},
tag: "Repair", title: "Roof Repair & Maintenance", subtitle: "Fast, reliable repair services", description: "From minor leaks to major damage, we provide prompt and effective roof repair services. Regular maintenance extends your roof's lifespan and prevents costly emergency repairs down the line.", imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530695.jpg", imageAlt: "Roof repair work"},
{
id: 3,
tag: "Inspection", title: "Professional Inspections", subtitle: "Detailed assessments for peace of mind", description: "Our comprehensive roof inspections identify potential issues before they become problems. We provide detailed reports and recommendations to keep your roof in optimal condition year-round.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-engineer-architect-looking-clipboard_23-2148233774.jpg", imageAlt: "Professional inspection"
},
tag: "Inspection", title: "Professional Inspections", subtitle: "Detailed assessments for peace of mind", description: "Our comprehensive roof inspections identify potential issues before they become problems. We provide detailed reports and recommendations to keep your roof in optimal condition year-round.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-engineer-architect-looking-clipboard_23-2148233774.jpg", imageAlt: "Professional inspection"},
]}
textboxLayout="default"
useInvertedBackground={true}
@@ -137,20 +134,16 @@ export default function LandingPage() {
testimonials={[
{
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Downtown District", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=1", imageAlt: "Sarah Johnson"
},
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=1", imageAlt: "Sarah Johnson"},
{
id: "2", name: "Michael Chen", role: "Property Manager", company: "Riverside Properties", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=2", imageAlt: "Michael Chen"
},
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=2", imageAlt: "Michael Chen"},
{
id: "3", name: "Emily Rodriguez", role: "Business Owner", company: "Local Enterprise", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=3", imageAlt: "Emily Rodriguez"
},
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=3", imageAlt: "Emily Rodriguez"},
{
id: "4", name: "David Williams", role: "Homeowner", company: "Suburban Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=4", imageAlt: "David Williams"
},
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg?_wi=4", imageAlt: "David Williams"},
]}
kpiItems={[
{ value: "2000+", label: "Projects Completed" },
@@ -172,20 +165,15 @@ export default function LandingPage() {
faqsAnimation="slide-up"
faqs={[
{
id: "1", title: "How long does a roof installation take?", content: "Most residential roof installations take 2-5 days depending on the size and complexity of your roof. We'll provide a specific timeline during your free consultation."
},
id: "1", title: "How long does a roof installation take?", content: "Most residential roof installations take 2-5 days depending on the size and complexity of your roof. We'll provide a specific timeline during your free consultation."},
{
id: "2", title: "What warranty do you offer?", content: "We offer a 10-year workmanship warranty on all installations and repairs. We also work with manufacturers to ensure you receive their product warranty coverage."
},
id: "2", title: "What warranty do you offer?", content: "We offer a 10-year workmanship warranty on all installations and repairs. We also work with manufacturers to ensure you receive their product warranty coverage."},
{
id: "3", title: "Do you work with insurance claims?", content: "Yes, we have extensive experience working with insurance companies. We can help document damage, file claims, and work directly with your adjuster."
},
id: "3", title: "Do you work with insurance claims?", content: "Yes, we have extensive experience working with insurance companies. We can help document damage, file claims, and work directly with your adjuster."},
{
id: "4", title: "What are the best roofing materials?", content: "The best material depends on your climate, budget, and preferences. We offer asphalt shingles, metal roofing, and architectural shingles. We'll recommend the best option for your home."
},
id: "4", title: "What are the best roofing materials?", content: "The best material depends on your climate, budget, and preferences. We offer asphalt shingles, metal roofing, and architectural shingles. We'll recommend the best option for your home."},
{
id: "5", title: "How often should I have my roof inspected?", content: "We recommend annual inspections, especially after severe weather. Regular inspections can catch small issues before they become expensive repairs."
},
id: "5", title: "How often should I have my roof inspected?", content: "We recommend annual inspections, especially after severe weather. Regular inspections can catch small issues before they become expensive repairs."},
]}
/>
</div>