diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f7e77e1..990b722 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,20 @@
import type { Metadata } from "next";
-import { Raleway } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const raleway = Raleway({
- variable: "--font-raleway", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance. Family-owned and fully insured.", keywords: "roofing, roof repair, roof replacement, Ozarks, Springfield MO, residential roofing, commercial roofing, contractor", openGraph: {
- title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance.", type: "website", siteName: "Ozarks Roofing LLC", images: [
- {
- url: "http://img.b2bpic.net/free-photo/worker-with-level-building-roof-house_23-2148748855.jpg", alt: "Professional roofing services by Ozarks Roofing LLC"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Ozarks Roofing LLC | Professional Roofing Services", description: "Expert residential and commercial roofing services in the Ozarks. 25+ years of quality installations, repairs, and maintenance.", images: ["http://img.b2bpic.net/free-photo/worker-with-level-building-roof-house_23-2148748855.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Ozarks Roofing LLC | Expert Roofing Solutions", description: "Professional roofing services for Ozarks homes and businesses. Expert installations, repairs, and inspections with 25+ years of trusted service."};
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 58a39b8..99d3f90 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -177,7 +177,7 @@ export default function LandingPage() {