diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 95a5ac3..a75aa7c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,28 @@
import type { Metadata } from "next";
-import { Manrope } from "next/font/google";
-import { DM_Sans } from "next/font/google";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", 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 geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Go To Gophers | Professional Landscaping Services", description: "Transform your outdoor space with Go To Gophers. Expert landscape design, maintenance, and irrigation services. Free consultations available.", keywords: "landscaping, landscape design, lawn maintenance, irrigation systems, outdoor design, landscape company", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Go To Gophers | Professional Landscaping Services", description: "Expert landscaping solutions for residential and commercial properties", siteName: "Go To Gophers", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok-with-mobile-phone_343596-30.jpg", alt: "Beautiful landscape design by Go To Gophers"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Go To Gophers | Professional Landscaping", description: "Transform your outdoor space with expert landscaping", images: ["http://img.b2bpic.net/free-photo/stylish-caucasian-woman-trendy-panama-waist-neon-bag-roof-bangkok-with-mobile-phone_343596-30.jpg"],
- },
-};
+ title: "Go To Gophers - Professional Landscaping Services", description: "Transform your outdoor space with expert landscaping design, maintenance, and irrigation services"};
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 8026715..c602415 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -128,7 +128,7 @@ export default function LandingPage() {