diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index eff5583..92d884b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Lato } 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 lato = Lato({
- variable: "--font-lato", subsets: ["latin"],
- weight: ["100", "300", "400", "700", "900"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Professional Plumbing in San Diego | John Padilla Plumbing Inc", description: "24/7 emergency plumbing in San Diego. 16+ years experience, 4.9★ rated. Licensed, trusted, family-owned. Fast response times for residential & commercial.", keywords: "plumber San Diego, emergency plumbing, leak repair, drain cleaning, water heater, licensed plumber", openGraph: {
- title: "Professional Plumbing in San Diego | John Padilla Plumbing Inc", description: "24/7 emergency plumbing services in San Diego. Fast response, fair pricing, licensed & insured.", type: "website", siteName: "John Padilla Plumbing Inc"},
- twitter: {
- card: "summary_large_image", title: "Professional Plumbing in San Diego | John Padilla Plumbing Inc", description: "24/7 emergency plumbing services. Expert repairs, trusted by San Diego families and businesses."},
- 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 (
-
-