Merge version_2 into main #2
@@ -1,43 +1,20 @@
|
||||
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 +1382,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" },
|
||||
|
||||
Reference in New Issue
Block a user