Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 863052df00 | |||
| aef4837e99 | |||
| b18bb60c6b | |||
| f1a190a668 | |||
| 7fadb532f4 | |||
| bea324e197 | |||
| 2766eb4904 | |||
| 683aff75cf | |||
| 19155c44c6 |
@@ -1,59 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
|
||||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Rivas & Díaz Dental Clinic | Odontología Premium en Santo Domingo Este", description: "Clínica dental de excelencia con 15+ años de experiencia. Servicios profesionales: limpieza, cosmética, ortodoncia e implantes. ¡Agenda tu cita hoy!", keywords: "dentista Santo Domingo Este, clínica dental República Dominicana, odontología, limpieza dental, blanqueamiento, implantes", metadataBase: new URL("https://rivasdiazdentalclinic.com"),
|
title: "Rivas & Díaz Dental Clinic", description: "Clínica dental premium en Santo Domingo Este con tecnología de punta y equipo de expertos en odontología."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://rivasdiazdentalclinic.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Rivas & Díaz Dental Clinic | Tu Sonrisa, Nuestra Prioridad", description: "Clínica dental premium con tecnología avanzada y equipo de especialistas certificados.", url: "https://rivasdiazdentalclinic.com", siteName: "Rivas & Díaz Dental Clinic", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/crowded-stomatology-waiting-area-with-people-filling-form-dental-consultation_482257-4858.jpg", alt: "Clínica Dental Rivas & Díaz"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Rivas & Díaz Dental Clinic", description: "Tu clínica dental de confianza en Santo Domingo Este. Servicios profesionales y tecnología de punta.", images: ["http://img.b2bpic.net/free-photo/crowded-stomatology-waiting-area-with-people-filling-form-dental-consultation_482257-4858.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="es">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -205,7 +205,8 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Agenda Tu Cita Ahora"
|
title="Agenda Tu Cita Ahora"
|
||||||
description="Contáctanos por cualquier medio. Estamos aquí para responder tus preguntas y ayudarte a programar tu consulta en Rivas & Díaz Dental Clinic."
|
description="Tu privacidad está protegida. Respuesta garantizada en 2 horas."
|
||||||
|
descriptionClassName="text-sm text-muted-foreground mb-6"
|
||||||
inputs={[
|
inputs={[
|
||||||
{ name: "nombre", type: "text", placeholder: "Tu nombre completo", required: true },
|
{ name: "nombre", type: "text", placeholder: "Tu nombre completo", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "Tu correo electrónico", required: true },
|
{ name: "email", type: "email", placeholder: "Tu correo electrónico", required: true },
|
||||||
@@ -259,4 +260,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user