6 Commits

Author SHA1 Message Date
cd62384ee1 Merge version_2 into main
Merge version_2 into main
2026-03-07 10:52:23 +00:00
d49615d778 Update src/app/page.tsx 2026-03-07 10:52:18 +00:00
ba762b0f4a Update src/app/layout.tsx 2026-03-07 10:52:17 +00:00
4bb2144e9e Merge version_1 into main
Merge version_1 into main
2026-03-07 10:44:08 +00:00
c50975117b Merge version_1 into main
Merge version_1 into main
2026-03-07 10:42:47 +00:00
f23a6308a2 Merge version_1 into main
Merge version_1 into main
2026-03-07 10:41:02 +00:00
2 changed files with 7 additions and 45 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -45,7 +45,7 @@ export default function LandingPage() {
description="Personalized skin treatments from experienced dermatologists. Book your consultation today and achieve the healthy, beautiful skin you deserve."
background={{ variant: "plain" }}
tag="Trusted Skin Care Specialists"
tagIcon={Shield}
tagIcon={CheckCircle}
tagAnimation="slide-up"
buttons={[
{ text: "Call Now: +1 559-435-0337", href: "tel:+1-559-435-0337" },