From ba762b0f4ad6d7e41a3854c0c7a1e1e2528c8bfa Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 10:52:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ddd18a3..eb1f99a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Dermatologist in Fresno, CA | Golden State Dermatology", description: "Expert dermatology care in Fresno, CA. Acne treatment, skin cancer screening, laser therapy & cosmetic dermatology. Board-certified. Call (559) 435-0337.", keywords: "dermatologist Fresno, skin doctor near me, acne treatment, laser skin treatment, skin cancer screening", metadataBase: new URL("https://goldenstatederm.com"), - alternates: { - canonical: "https://goldenstatederm.com"}, - openGraph: { - title: "Golden State Dermatology | Trusted Skin Care Specialists in Fresno", description: "Expert dermatology treatments for acne, skin cancer screening, laser therapy, and cosmetic dermatology. 4.4★ rated by 227+ patients.", url: "https://goldenstatederm.com", siteName: "Golden State Dermatology", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/patient-undergoing-microneedling-procedure_23-2149374062.jpg", alt: "Golden State Dermatology clinic"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Golden State Dermatology | Fresno, CA", description: "Expert dermatology care trusted by 227+ patients. Call (559) 435-0337 to schedule.", images: ["http://img.b2bpic.net/free-photo/patient-undergoing-microneedling-procedure_23-2149374062.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Golden State Dermatology | Expert Skin Care in Fresno", description: "Professional dermatology services in Fresno, CA. Expert skin care treatments from board-certified dermatologists. Book your consultation today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}