From 2ccf5ff1ec46264690ef9089b55eb46f508edf47 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:31:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f493dfd..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "J&JD Landscaping LLC | Professional Landscaping & Stonework", description: "Expert landscaping, stonework, and patio design services. Transform your outdoor space with J&JD Landscaping LLC. Free consultation available.", keywords: "landscaping, stonework, patio design, landscaper, outdoor design, hardscape, lawn care", metadataBase: new URL("https://www.jjdlandscaping.com"), - alternates: { - canonical: "https://www.jjdlandscaping.com"}, - openGraph: { - title: "J&JD Landscaping LLC | Professional Outdoor Transformations", description: "Premium landscaping and hardscape services for your home. Expert design and installation.", url: "https://www.jjdlandscaping.com", siteName: "J&JD Landscaping LLC", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1023.jpg", alt: "Beautiful landscaped outdoor space"}, - ], - }, - twitter: { - card: "summary_large_image", title: "J&JD Landscaping LLC", description: "Professional landscaping and patio design services.", images: ["http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1023.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +