Merge version_2 into main #2
@@ -1,51 +1,24 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dr. Ramon Zambrano | Consultorio Médico en Nobol", description: "Consulta médica profesional en Nobol. Dr. Ramon Zambrano ofrece atención general, diagnóstico y tratamiento para toda la familia. 30+ años de experiencia.", keywords: "médico Nobol, doctor Ecuador, consulta médica Nobol, atención médica general, consultorio médico", metadataBase: new URL("https://drramonzambrano.ec"),
|
||||
alternates: {
|
||||
canonical: "https://drramonzambrano.ec"},
|
||||
openGraph: {
|
||||
title: "Dr. Ramon Zambrano | Consultorio Médico en Nobol", description: "Atención médica confiable y profesional en Nobol. Servicios de consulta general, diagnóstico y control de salud para toda la familia.", type: "website", siteName: "Consultorio Dr. Ramon Zambrano", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/happy-male-doctor-explaining-medical-record-his-senior-patient-counselling-meeting-clinic_637285-1196.jpg", alt: "Dr. Ramon Zambrano - Consultorio Médico"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Dr. Ramon Zambrano | Médico en Nobol", description: "Consulta médica profesional. 30+ años sirviendo a la comunidad de Nobol.", images: ["http://img.b2bpic.net/free-photo/happy-male-doctor-explaining-medical-record-his-senior-patient-counselling-meeting-clinic_637285-1196.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Dr. Ramon Zambrano - Consultorio Médico en Nobol", description:
|
||||
"Consulta médica profesional con el Dr. Ramon Zambrano en Nobol. Atención cercana y de confianza para usted y su familia desde 1995."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={poppins.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1386,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -61,7 +61,8 @@ export default function MedicalConsultoryPage() {
|
||||
description="Consulta médica profesional con el Dr. Ramon Zambrano. Atención cercana y de confianza para usted y su familia desde 1995."
|
||||
tag="Médico Local de Confianza"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
tagAnimation="opacity"
|
||||
tagClassName="font-bold text-accent"
|
||||
buttons={[
|
||||
{ text: "📞 Llamar Ahora", href: "tel:0993916562" },
|
||||
{ text: "📅 Solicitar Cita", href: "#appointment" },
|
||||
|
||||
Reference in New Issue
Block a user