diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3287c48..ab43f36 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,21 @@
import type { Metadata } from "next";
-import { Source_Sans_3 } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Expert Dental Care | Premium Dental Services & Treatment", description: "Experience expert dental care with advanced technology and skilled dentists. Comprehensive cosmetic, restorative, and preventive dental services for your perfect smile.", keywords: "expert dental care, cosmetic dentistry, dental implants, professional dentist, premium dental services", metadataBase: new URL("https://expertdentalcare.com"),
- alternates: {
- canonical: "https://expertdentalcare.com"
- },
- openGraph: {
- title: "Expert Dental Care | Premium Dental Services & Treatment", description: "Experience expert dental care with advanced technology and skilled dentists. Comprehensive cosmetic, restorative, and preventive dental services for your perfect smile.", siteName: "Expert Dental Care", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2973.jpg", alt: "Expert dental care"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Expert Dental Care | Premium Dental Services & Treatment", description: "Experience expert dental care with advanced technology and skilled dentists.", images: [
- "http://img.b2bpic.net/free-photo/dentist-process-dental-services-dental-office-dental-treatment_1321-2973.jpg"
- ]
- }
-};
+ title: "Expert Dental Care", description: "Premium dental care excellence with luxury amenities and cutting-edge technology"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-