Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1326ba0794 | |||
| 617790cbc2 | |||
| d104e8e6e8 | |||
| 45cdd2744d | |||
| 0dbbc24b91 | |||
| 8cd9ff0700 |
@@ -1,43 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Camacho Painting LLC | Professional Painting Services", description: "Expert residential and commercial painting services. 15+ years experience, 1000+ satisfied customers. Free estimates. Transform your space today!", keywords: "painting services, interior painting, exterior painting, commercial painting, house painting, professional painters", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Camacho Painting LLC | Professional Painting Services", description: "Expert residential and commercial painting services. 15+ years experience, 1000+ satisfied customers. Free estimates.", type: "website", siteName: "Camacho Painting LLC"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Camacho Painting LLC | Professional Painting Services", description: "Expert painting services for homes and businesses. Get your free estimate today!"},
|
||||
title: "Camacho Painting LLC | Professional Painting Services", description: "Expert painting services for residential and commercial projects. Licensed, insured, and certified by industry standards."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1405,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -80,7 +80,7 @@ export default function LandingPage() {
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
title="Quality Painting Solutions for 15+ Years"
|
||||
description="Camacho Painting LLC was founded on the principle that every paint job deserves excellence. We combine premium materials, skilled craftsmanship, and transparent communication to deliver painting services that homeowners and businesses trust. Our team takes pride in transforming spaces into vibrant, beautiful environments."
|
||||
description="Licensed, insured, and certified by industry standards, Camacho Painting LLC was founded on the principle that every paint job deserves excellence. We combine premium materials, skilled craftsmanship, and transparent communication to deliver painting services that homeowners and businesses trust. Our team takes pride in transforming spaces into vibrant, beautiful environments."
|
||||
metrics={[
|
||||
{ value: "1000+", title: "Projects Completed" },
|
||||
{ value: "15+", title: "Years of Experience" },
|
||||
@@ -188,7 +188,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Ready to Transform Your Space?"
|
||||
description="Get your free painting estimate today. Fill out the form and our team will contact you within 24 hours to discuss your project."
|
||||
description="Our team will contact you within 24 hours to discuss your project and provide a free estimate. We guarantee prompt, professional service."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
@@ -200,7 +200,7 @@ export default function LandingPage() {
|
||||
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
|
||||
},
|
||||
{
|
||||
name: "service", type: "text", placeholder: "Type of Service (Interior/Exterior/Commercial)", required: true,
|
||||
name: "serviceType", type: "select", placeholder: "Type of Service", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
@@ -254,4 +254,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user