5 Commits

Author SHA1 Message Date
5104263a96 Update src/app/page.tsx 2026-03-04 19:47:05 +00:00
9bfaa7a964 Update src/app/layout.tsx 2026-03-04 19:47:04 +00:00
e7615e2c44 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:42:24 +00:00
84790f4e16 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:41:39 +00:00
a91d01bd98 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:40:27 +00:00
2 changed files with 15 additions and 62 deletions

View File

@@ -1,74 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Bright Smile Dental - Family & Cosmetic Dentistry | Local Dental Care",
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,
},
};
title: "Bright Smile Dental", description: "Expert dental care for your entire family"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -104,7 +104,7 @@ export default function HomePage() {
<div id="services" data-section="services">
<FeatureBento
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"
tagIcon={Stethoscope}
textboxLayout="default"
@@ -221,4 +221,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}