Merge version_2 into main #4
@@ -1,42 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "500", "600", "700", "800"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Marcos Painting Services | Interior & Exterior Painting Independence, MO", description: "Expert painting services in Independence, Missouri. Professional interior, exterior, and deck painting with 15+ years of experience. Free estimates available.", keywords: "painting services, interior painting, exterior painting, Independence Missouri, painting contractor", openGraph: {
|
||||
title: "Marcos Painting Services | Expert Painting in Independence, MO", description: "Professional interior and exterior painting services. Transform your space with quality craftsmanship.", type: "website", siteName: "Marcos Painting Services"
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Marcos Painting Services", description: "Professional painting services in Independence, Missouri"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={poppins.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1404,7 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -122,7 +122,7 @@ export default function LandingPage() {
|
||||
<ContactFaq
|
||||
ctaTitle="Ready for Your Next Paint Job?"
|
||||
ctaDescription="Contact us today for a free quote and consultation. We serve Independence, Missouri and the surrounding areas."
|
||||
ctaButton={{ text: "Call or Email Now", href: "#" }}
|
||||
ctaButton={{ text: "Get Your Free Quote Today", href: "tel:+18166474863" }}
|
||||
ctaIcon={Phone}
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user