Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 75374e094b | |||
| 4bbe439c8a |
@@ -21,18 +21,19 @@ const lato = Lato({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Powerful Website Solutions | Webild", description: "Build extraordinary digital experiences with our powerful platform. Transform your business, drive growth, and achieve remarkable results with cutting-edge technology.", keywords: "powerful website, digital transformation, business solutions, innovation platform, growth", robots: {
|
title: "Professional Roofing Services | Expert Contractors", description: "Premium roofing solutions for residential and commercial properties. Expert contractors, quality materials, and guaranteed workmanship. Get your free roofing inspection today.", keywords: "roofing, roofer, roof repair, roof replacement, residential roofing, commercial roofing, roofing contractor", robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true,
|
||||||
},
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Powerful Website Solutions | Webild", description: "Build extraordinary digital experiences with our powerful platform. Transform your business and achieve remarkable results.", type: "website", siteName: "Webild", images: [
|
title: "Professional Roofing Services | Expert Contractors", description: "Premium roofing solutions with expert contractors and quality workmanship.", type: "website", siteName: "Pro Roofing", images: [
|
||||||
{
|
{
|
||||||
url: "http://img.b2bpic.net/free-vector/dashboard-element-collection_23-2148394289.jpg", alt: "Powerful dashboard interface"},
|
url: "http://img.b2bpic.net/free-vector/dashboard-element-collection_23-2148394289.jpg", alt: "Professional roofing services"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "Powerful Website Solutions | Webild", description: "Build extraordinary digital experiences. Transform your business with our cutting-edge platform.", images: ["http://img.b2bpic.net/free-vector/dashboard-element-collection_23-2148394289.jpg"],
|
card: "summary_large_image", title: "Professional Roofing Services | Expert Contractors", description: "Premium roofing solutions with expert contractors and quality workmanship.", images: ["http://img.b2bpic.net/free-vector/dashboard-element-collection_23-2148394289.jpg"],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
132
src/app/page.tsx
132
src/app/page.tsx
@@ -10,7 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
|
|||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import { Rocket, Star, Zap, TrendingUp, Quote, CheckCircle, Mail, ArrowRight } from "lucide-react";
|
import { Hammer, Shield, Zap, TrendingUp, Quote, CheckCircle, Mail, ArrowRight } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -29,32 +29,32 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Services", id: "features" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "Why Us", id: "about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Projects", id: "testimonials" },
|
||||||
{ name: "Metrics", id: "metrics" },
|
{ name: "About", id: "metrics" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Get Started", href: "contact"
|
text: "Free Inspection", href: "contact"
|
||||||
}}
|
}}
|
||||||
brandName="Webild"
|
brandName="Pro Roofing"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
title="Build Something Powerful"
|
title="Expert Roofing Solutions for Your Home"
|
||||||
description="Create extraordinary digital experiences that captivate and convert. We provide the tools, insights, and support you need to bring your vision to life and dominate your market."
|
description="Professional roofing services with guaranteed quality workmanship. From inspections to complete replacements, we deliver durable, reliable roofing solutions that protect your property and exceed your expectations."
|
||||||
tag="Transform Your Vision"
|
tag="Quality Roofing Contractors"
|
||||||
tagIcon={Rocket}
|
tagIcon={Hammer}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
imageSrc="http://img.b2bpic.net/free-vector/dashboard-element-collection_23-2148394289.jpg"
|
imageSrc="http://img.b2bpic.net/free-vector/dashboard-element-collection_23-2148394289.jpg"
|
||||||
imageAlt="Powerful dashboard interface"
|
imageAlt="Professional roofing team"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Building", href: "contact" },
|
{ text: "Get Free Inspection", href: "contact" },
|
||||||
{ text: "Learn More", href: "about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -65,12 +65,12 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TextAbout
|
<TextAbout
|
||||||
tag="Why Choose Us"
|
tag="Why Choose Us"
|
||||||
tagIcon={Star}
|
tagIcon={Shield}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="We deliver powerful solutions that transform businesses and create lasting impact in your industry through innovation, excellence, and unwavering commitment to your success."
|
title="Trusted roofing experts delivering superior quality, professional service, and lasting protection for residential and commercial properties across the region."
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Discover Our Approach", href: "features" }
|
{ text: "Explore Our Services", href: "features" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -78,26 +78,26 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardTwentySix
|
<FeatureCardTwentySix
|
||||||
title="Powerful Features Built for Success"
|
title="Comprehensive Roofing Services"
|
||||||
description="Explore our comprehensive suite of tools designed to elevate your business and drive meaningful results."
|
description="We offer a complete range of professional roofing solutions designed to protect your property and provide long-lasting durability."
|
||||||
tag="Core Capabilities"
|
tag="Our Services"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Advanced Innovation", description: "Cutting-edge technology that keeps you ahead of the competition.", imageSrc: "http://img.b2bpic.net/free-photo/interface-business-office-future-business-woman-pushing-virtual-buttons_1212-709.jpg", imageAlt: "Innovation feature", buttonIcon: ArrowRight,
|
title: "Roof Inspections", description: "Professional inspections to identify damage, assess condition, and provide detailed reports for informed decisions.", imageSrc: "http://img.b2bpic.net/free-photo/interface-business-office-future-business-woman-pushing-virtual-buttons_1212-709.jpg", imageAlt: "Roof inspection service", buttonIcon: ArrowRight,
|
||||||
buttonHref: "#"
|
buttonHref: "#"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Seamless Collaboration", description: "Tools that unite your team and amplify productivity exponentially.", imageSrc: "http://img.b2bpic.net/free-photo/businesspeople-working-as-team_1098-803.jpg", imageAlt: "Collaboration feature", buttonIcon: ArrowRight,
|
title: "Roof Repair", description: "Expert repair services for leaks, missing shingles, and damage. Quick response and quality workmanship guaranteed.", imageSrc: "http://img.b2bpic.net/free-photo/businesspeople-working-as-team_1098-803.jpg", imageAlt: "Roof repair work", buttonIcon: ArrowRight,
|
||||||
buttonHref: "#"
|
buttonHref: "#"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Exponential Growth", description: "Proven strategies to scale your business and achieve extraordinary results.", imageSrc: "http://img.b2bpic.net/free-vector/growing-up-landing-page-template_23-2148114137.jpg", imageAlt: "Growth feature", buttonIcon: ArrowRight,
|
title: "Roof Replacement", description: "Complete roof replacement using premium materials and proven techniques for long-lasting protection and curb appeal.", imageSrc: "http://img.b2bpic.net/free-vector/growing-up-landing-page-template_23-2148114137.jpg", imageAlt: "Roof replacement", buttonIcon: ArrowRight,
|
||||||
buttonHref: "#"
|
buttonHref: "#"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Enterprise Security", description: "Bank-level protection ensuring your data remains secure and compliant.", imageSrc: "http://img.b2bpic.net/free-photo/standard-quality-control-concept-m_23-2150041839.jpg", imageAlt: "Security feature", buttonIcon: ArrowRight,
|
title: "Weather Protection", description: "Fortified roofing systems designed to withstand harsh weather, wind, hail, and environmental challenges effectively.", imageSrc: "http://img.b2bpic.net/free-photo/standard-quality-control-concept-m_23-2150041839.jpg", imageAlt: "Weather-resistant roofing", buttonIcon: ArrowRight,
|
||||||
buttonHref: "#"
|
buttonHref: "#"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
@@ -109,30 +109,30 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardSeven
|
<MetricCardSeven
|
||||||
title="Proven Results That Speak Volumes"
|
title="Proven Track Record of Excellence"
|
||||||
description="Join thousands of satisfied clients who have transformed their operations and achieved remarkable success with our platform."
|
description="Join hundreds of satisfied customers who have trusted us with their roofing needs and received exceptional service."
|
||||||
tag="Impact Metrics"
|
tag="Our Results"
|
||||||
tagIcon={TrendingUp}
|
tagIcon={TrendingUp}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "50K+", title: "Businesses Empowered", items: [
|
id: "1", value: "2500+", title: "Roofs Completed", items: [
|
||||||
"Global presence across 180+ countries", "99.9% platform reliability and uptime", "24/7 dedicated support"
|
"Trusted across the entire region", "99.2% customer satisfaction rate", "Licensed and insured professionals"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", value: "$2B+", title: "Revenue Generated for Clients", items: [
|
id: "2", value: "15+", title: "Years in Business", items: [
|
||||||
"Average 340% ROI increase", "Proven track record of success", "Industry-leading conversion rates"
|
"Established reputation for quality", "Experienced team of experts", "Proven track record of success"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", value: "98%", title: "Customer Satisfaction Rating", items: [
|
id: "3", value: "100%", title: "Warranty Coverage", items: [
|
||||||
"Award-winning customer service", "NPS score of 72+", "Industry-leading retention"
|
"Comprehensive material warranties", "Workmanship guarantees included", "Peace of mind protection"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", value: "15+", title: "Years of Excellence", items: [
|
id: "4", value: "24/7", title: "Emergency Support", items: [
|
||||||
"Trusted by Fortune 500 companies", "Continuous innovation and evolution", "Pioneering industry standards"
|
"Available for emergency repairs", "Rapid response time", "Professional emergency services"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
@@ -145,29 +145,29 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFive
|
<TestimonialCardFive
|
||||||
title="Success Stories From Our Community"
|
title="Testimonials From Satisfied Customers"
|
||||||
description="Discover how leading companies have transformed their operations and achieved extraordinary results using our platform."
|
description="See what our clients say about our professional service, quality workmanship, and commitment to excellence."
|
||||||
tag="Testimonials"
|
tag="Customer Reviews"
|
||||||
tagIcon={Quote}
|
tagIcon={Quote}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Sarah Chen, CEO of InnovateCorp", date: "Date: 15 January 2025", title: "Transformative Platform That Delivers Real Results", quote: "This platform completely revolutionized our business operations. We've seen a 340% increase in productivity and our team loves using it every single day. The support team is absolutely phenomenal.", tag: "Enterprise", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Sarah Chen", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1"
|
id: "1", name: "John Martinez, Homeowner", date: "Date: 15 January 2025", title: "Outstanding Roof Replacement", quote: "Pro Roofing transformed our home with a beautiful new roof. The team was professional, on-time, and cleaned up after themselves. Highly recommended!", tag: "Residential", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "John Martinez", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Michael Rodriguez, Founder of GrowthHub", date: "Date: 12 January 2025", title: "Best Investment We Ever Made", quote: "The ROI has been absolutely incredible. We went from struggling with outdated tools to having a cutting-edge solution that our entire team loves. Highly recommend to any serious business.", tag: "Growth", avatarSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", avatarAlt: "Michael Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg"
|
id: "2", name: "Sarah Chen, Business Owner", date: "Date: 12 January 2025", title: "Professional Commercial Service", quote: "We needed a quick roof repair for our commercial property. Pro Roofing responded within hours and fixed the problem perfectly. Exceptional service!", tag: "Commercial", avatarSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", avatarAlt: "Sarah Chen", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Emily Watson, CTO of TechVision", date: "Date: 8 January 2025", title: "Enterprise-Grade Solution at an Accessible Price", quote: "We evaluated dozens of platforms and this one stood out immediately. The technical excellence, security measures, and customer support are unmatched in the industry.", tag: "Technical", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Emily Watson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2"
|
id: "3", name: "Mike Thompson, Property Manager", date: "Date: 8 January 2025", title: "Reliable and Professional", quote: "After severe weather damage, Pro Roofing was there to help. Their inspection was thorough, pricing was fair, and the work quality exceeded expectations.", tag: "Property Management", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Mike Thompson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "James Liu, Director at ScaleUp Ventures", date: "Date: 5 January 2025", title: "Scaled Our Operations 10x Without Adding Overhead", quote: "The automation capabilities alone saved us thousands of hours annually. Plus, the intuitive interface means our team needed minimal training. This is the future of business operations.", tag: "Scaling", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "James Liu", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3"
|
id: "4", name: "Lisa Wong, Homeowner", date: "Date: 5 January 2025", title: "Quick Response to Leak Issues", quote: "Our roof was leaking and Pro Roofing came out the same day. They identified the problem, fixed it properly, and gave us confidence our home is protected.", tag: "Emergency Repair", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Lisa Wong", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Jessica Martinez, VP of Operations at FutureFirst", date: "Date: 2 January 2025", title: "The Most Intuitive Platform I've Ever Used", quote: "We were skeptical at first, but after day one we were completely sold. The ease of use combined with powerful features makes this a no-brainer for any forward-thinking company.", tag: "Operations", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "Jessica Martinez", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4"
|
id: "5", name: "David Harris, Contractor", date: "Date: 2 January 2025", title: "Trusted Partner for Projects", quote: "I regularly recommend Pro Roofing to my clients. Their consistency, professionalism, and attention to detail make them the best choice in the area.", tag: "Contractor Partner", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", avatarAlt: "David Harris", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6", name: "David Park, COO of NextGen Solutions", date: "Date: 28 December 2024", title: "Simply the Best in Class", quote: "After 20 years in this industry, I can confidently say this platform is the best-in-class solution available. The value proposition is exceptional and the team behind it is exceptional.", tag: "Premium", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", avatarAlt: "David Park", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg"
|
id: "6", name: "Emma Rodriguez, Homeowner", date: "Date: 28 December 2024", title: "Best Roofing Company Hands Down", quote: "Pro Roofing is the real deal. They delivered on every promise, stayed within budget, and provided a beautiful roof that will last for years.", tag: "New Installation", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", avatarAlt: "Emma Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -178,13 +178,13 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="social-proof" data-section="social-proof">
|
<div id="social-proof" data-section="social-proof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Trusted by Industry Leaders Worldwide"
|
title="Trusted by Homeowners and Businesses"
|
||||||
description="Join the companies that are transforming their industries and setting new standards for excellence."
|
description="Join satisfied customers throughout the region who depend on Pro Roofing for professional service and quality results."
|
||||||
tag="Enterprise Customers"
|
tag="Industry Leaders"
|
||||||
tagIcon={CheckCircle}
|
tagIcon={CheckCircle}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
names={[
|
names={[
|
||||||
"TechCorp International", "InnovateLab Solutions", "GrowthScale Ventures", "FutureForward Industries", "NextGen Technologies", "EliteVision Group", "PremiumHub Digital"
|
"Residential Homeowners", "Commercial Properties", "Property Management Firms", "General Contractors", "Real Estate Companies", "Insurance Companies", "Municipal Services"
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -196,46 +196,46 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactCenter
|
||||||
tag="Get Connected"
|
tag="Get Your Free Inspection"
|
||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="Ready to Transform Your Business?"
|
title="Ready to Protect Your Property?"
|
||||||
description="Join thousands of successful companies. Sign up today and discover how our platform can accelerate your growth and unlock your full potential."
|
description="Contact Pro Roofing today for a free inspection and quote. Our team is ready to help with all your roofing needs."
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email address"
|
inputPlaceholder="Enter your email address"
|
||||||
buttonText="Get Started Now"
|
buttonText="Schedule Inspection"
|
||||||
termsText="By signing up, you agree to our Terms of Service and Privacy Policy. Unsubscribe anytime."
|
termsText="By contacting us, you agree to our Terms of Service and Privacy Policy. We respect your privacy and will never share your information."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Webild"
|
logoText="Pro Roofing"
|
||||||
copyrightText="© 2025 Webild. All rights reserved."
|
copyrightText="© 2025 Pro Roofing. All rights reserved."
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Services", items: [
|
||||||
{ label: "Features", href: "#features" },
|
{ label: "Roof Inspections", href: "#features" },
|
||||||
{ label: "Pricing", href: "#pricing" },
|
{ label: "Roof Repair", href: "#features" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Roof Replacement", href: "#features" },
|
||||||
{ label: "Enterprise", href: "#" }
|
{ label: "Emergency Repair", href: "#contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About Us", href: "#about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Our Team", href: "#metrics" },
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Projects", href: "#testimonials" },
|
||||||
{ label: "Contact", href: "#contact" }
|
{ label: "Contact", href: "#contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Resources", items: [
|
title: "Resources", items: [
|
||||||
{ label: "Documentation", href: "#" },
|
{ label: "Free Inspection", href: "#contact" },
|
||||||
{ label: "API Reference", href: "#" },
|
{ label: "Warranty Info", href: "#" },
|
||||||
{ label: "Community", href: "#" },
|
{ label: "FAQ", href: "#" },
|
||||||
{ label: "Support", href: "#" }
|
{ label: "Support", href: "#contact" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user