diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3009a07..d58e720 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ec0ac52..d889929 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -122,7 +122,7 @@ export default function LandingPage() {