6 Commits

Author SHA1 Message Date
1326ba0794 Update src/app/page.tsx 2026-03-09 01:42:36 +00:00
617790cbc2 Update src/app/layout.tsx 2026-03-09 01:42:36 +00:00
d104e8e6e8 Merge version_2 into main
Merge version_2 into main
2026-03-09 01:34:54 +00:00
45cdd2744d Update src/app/page.tsx 2026-03-09 01:34:50 +00:00
0dbbc24b91 Update src/app/layout.tsx 2026-03-09 01:34:49 +00:00
8cd9ff0700 Merge version_1 into main
Merge version_1 into main
2026-03-09 01:29:13 +00:00
2 changed files with 12 additions and 35 deletions

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}