Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d49615d778 | |||
| ba762b0f4a | |||
| 4bb2144e9e | |||
| c50975117b | |||
| f23a6308a2 |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Nunito_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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."
|
description="Personalized skin treatments from experienced dermatologists. Book your consultation today and achieve the healthy, beautiful skin you deserve."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
tag="Trusted Skin Care Specialists"
|
tag="Trusted Skin Care Specialists"
|
||||||
tagIcon={Shield}
|
tagIcon={CheckCircle}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now: +1 559-435-0337", href: "tel:+1-559-435-0337" },
|
{ text: "Call Now: +1 559-435-0337", href: "tel:+1-559-435-0337" },
|
||||||
|
|||||||
Reference in New Issue
Block a user