Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 21:20:55 +00:00
2 changed files with 29 additions and 83 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${inter.variable}`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1435,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -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() {
<FooterBaseReveal
columns={[
{
title: "Services", items: [
{ label: "General Dentistry", href: "#services" },
{ label: "Dental Implants", href: "/treatments" },
title: "Servicios", items: [
{ label: "Odontología General", href: "#services" },
{ label: "Implantes Dentales", href: "/treatments" },
{ label: "Invisalign", href: "/treatments" },
{ label: "Root Canal Treatment", href: "/treatments" },
{ label: "Cosmetic Dentistry", href: "/treatments" },
{ label: "Tratamiento de Conducto", href: "/treatments" },
{ label: "Odontología Cosmética", href: "/treatments" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
{ label: "Contact", href: "/contact" },
title: "Empresa", items: [
{ label: "Sobre Nosotros", href: "/about" },
{ label: "Nuestro Equipo", href: "/about" },
{ label: "Contacto", href: "/contact" },
{ label: "Blog", href: "#" },
{ label: "Emergency Dentist", href: "#" },
{ label: "Dentista de Emergencia", href: "#" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Accessibility", href: "#" },
{ label: "Política de Privacidad", href: "#" },
{ label: "Términos de Servicio", href: "#" },
{ label: "Política de Cookies", href: "#" },
{ label: "Accesibilidad", href: "#" },
],
},
]}
copyrightText="© 2025 SmileCare Dental Clinic. All rights reserved."
copyrightText="© 2025 SmileCare Dental Clinic. Todos los derechos reservados."
/>
</div>
</ThemeProvider>
);
}
}