diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 666a37b..b97fada 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,73 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito } 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 nunito = Nunito({
- variable: "--font-nunito",
- subsets: ["latin"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "SmileCare Dental Clinic - Expert Dental Care & Treatments",
- description: "Professional dental clinic offering general dentistry, implants, Invisalign, and cosmetic treatments. Experienced team, friendly staff, reasonable prices.",
- keywords: "dentist, dental clinic, dental implants, Invisalign, root canal, cosmetic dentistry, children dentist",
- metadataBase: new URL("https://smilecare-dental.com"),
- alternates: {
- canonical: "https://smilecare-dental.com",
- },
- openGraph: {
- title: "SmileCare Dental Clinic - Expert Dental Care",
- description: "Professional dental care with a friendly team focused on your comfort and results.",
- siteName: "SmileCare Dental",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg",
- alt: "SmileCare Dental Clinic",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "SmileCare Dental Clinic",
- description: "Professional dental care with exceptional results. Book your appointment today.",
- images: ["http://img.b2bpic.net/free-photo/happy-female-dentist-pointing-digital-tablet-screen-female-patient-clinic_23-2147879186.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "SmileCare Dental Clinic", description: "Professional dental care with a friendly team focused on your comfort and exceptional results."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 779e564..7139acb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -66,22 +66,22 @@ export default function HomePage() {
useInvertedBackground={false}
bulletPoints={[
{
- title: "Excellent Patient Care", description: "Every patient receives personalized attention and compassionate treatment throughout their visit.", icon: Heart,
+ title: "Atención Excelente al Paciente", description: "Cada paciente recibe atención personalizada y tratamiento compasivo durante toda su visita.", icon: Heart,
},
{
- title: "Highly Skilled Dentists", description: "Our experienced professionals deliver exceptional results using advanced techniques.", icon: Award,
+ title: "Dentistas Altamente Calificados", description: "Nuestros profesionales experimentados entregan resultados excepcionales usando técnicas avanzadas.", icon: Award,
},
{
- title: "Modern Technology", description: "We invest in cutting-edge equipment for implants, Invisalign, and advanced dental procedures.", icon: Zap,
+ title: "Tecnología Moderna", description: "Invertimos en equipos de vanguardia para implantes, Invisalign y procedimientos dentales avanzados.", icon: Zap,
},
{
- title: "Comfortable Environment", description: "Our relaxed clinic is designed for patient comfort, including specialized care for children.", icon: Shield,
+ title: "Entorno Cómodo", description: "Nuestra clínica relajada está diseñada para la comodidad del paciente, incluyendo atención especializada para niños.", icon: Shield,
},
{
- title: "Fair Pricing", description: "Quality dental care at transparent, reasonable prices without hidden fees.", icon: DollarSign,
+ title: "Precios Justos", description: "Atención dental de calidad a precios transparentes y razonables sin cargos ocultos.", icon: DollarSign,
},
{
- title: "Punctual Service", description: "We respect your time with efficient scheduling and minimal wait times."},
+ title: "Servicio Puntual", description: "Respetamos tu tiempo con programación eficiente y tiempos de espera mínimos."},
]}
imageSrc="http://img.b2bpic.net/free-photo/front-view-male-doctor-with-sterile-mask-yellow-wall_179666-15004.jpg"
imageAlt="Professional dental team in modern clinic"
@@ -183,35 +183,35 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}