Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5104263a96 | |||
| 9bfaa7a964 | |||
| e7615e2c44 | |||
| 84790f4e16 | |||
| a91d01bd98 |
@@ -1,74 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Figtree } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const figtree = Figtree({
|
|
||||||
variable: "--font-figtree",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Bright Smile Dental - Family & Cosmetic Dentistry | Local Dental Care",
|
title: "Bright Smile Dental", description: "Expert dental care for your entire family"};
|
||||||
description: "Professional dental services for families, professionals, and seniors. Same-day emergencies, cosmetic dentistry, implants, and orthodontics. 25+ years serving the community.",
|
|
||||||
keywords: "family dentist, cosmetic dentistry, dental implants, orthodontics, emergency dental care, teeth whitening, dental services near me, professional dentist",
|
|
||||||
metadataBase: new URL("https://brightsmileddental.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://brightsmileddental.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Bright Smile Dental - Trusted Family Dentistry",
|
|
||||||
description: "Professional dental care for families and professionals. Expert cosmetic, general, and emergency services. Schedule your appointment today.",
|
|
||||||
url: "https://brightsmileddental.com",
|
|
||||||
siteName: "Bright Smile Dental",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/close-up-happy-girl-front-her-parents_23-2147878266.jpg",
|
|
||||||
alt: "Happy family smiling at dental clinic",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Bright Smile Dental - Your Trusted Dentist",
|
|
||||||
description: "Professional dental care: cleanings, cosmetic treatments, implants & emergency services.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/close-up-happy-girl-front-her-parents_23-2147878266.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={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ export default function HomePage() {
|
|||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
title="Our Comprehensive Dental Services"
|
title="Our Comprehensive Dental Services"
|
||||||
description="From routine cleanings to advanced cosmetic procedures, we offer a full range of dental solutions tailored to your needs."
|
description="From routine cleanings to smile transformations, we deliver results you'll love."
|
||||||
tag="Services"
|
tag="Services"
|
||||||
tagIcon={Stethoscope}
|
tagIcon={Stethoscope}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -221,4 +221,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user