Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a18f391cbd | |||
| ed3ad454f0 | |||
| e02a020e3a | |||
| acc56c1450 | |||
| acd000a324 |
@@ -1,49 +1,16 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } 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 manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dr. Alexandre Nascimento - Oftalmologista em Nova Mutum", description: "Oftalmologista em Nova Mutum com tecnologia moderna. Consulta, exame de vista, diagnóstico de doenças oculares. Agende sua consulta agora.", keywords: "oftalmologista Nova Mutum, exame de vista, catarata, glaucoma, consulta oftalmológica, saúde ocular", openGraph: {
|
||||
title: "Dr. Alexandre Nascimento - Oftalmologia", description: "Cuidado completo para a saúde dos seus olhos com tecnologia moderna e atendimento humanizado.", type: "website", siteName: "Dr. Alexandre Nascimento Oftalmologia"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Dr. Alexandre Nascimento - Oftalmologista", description: "Consultas oftalmológicas em Nova Mutum com equipamentos de última geração."},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Dr. Alexandre Nascimento - Oftalmologia", description: "Cuidado visual de excelência. Consultas oftalmológicas completas com tecnologia moderna em Nova Mutum."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="pt-BR">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1378,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -174,18 +174,13 @@ export default function LandingPage() {
|
||||
{
|
||||
label: "📍 Av. das Águias, 668 W - Parque dos Ingás - Nova Mutum, MT", href: "https://maps.google.com/?q=Av+das+Águias+668+W+Parque+dos+Ingás+Nova+Mutum+MT"
|
||||
},
|
||||
{ label: "💬 WhatsApp", href: "https://wa.me/5565999190657" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Horários", items: [
|
||||
{ label: "Seg-Qui: 8h - 12h | 13h30 - 18h", href: "#" },
|
||||
{ label: "Sexta: 8h - 12h | 13h30 - 17h", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Redes Sociais", items: [
|
||||
{ label: "WhatsApp", href: "https://wa.me/5565999190657" },
|
||||
{ label: "Google", href: "#" },
|
||||
{ label: "Seg-Qui: 8h - 11h30 | 13h30 - 18h", href: "#" },
|
||||
{ label: "Sexta: 8h - 11h30 | 13h30 - 17h", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f0ffff;
|
||||
--foreground: #000000;
|
||||
--primary-cta: #41dff0;
|
||||
--background: #f5f0e9;
|
||||
--card: #ffffff;
|
||||
--foreground: #2b2b2b;
|
||||
--primary-cta: #2b2b2b;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f0ffff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #120a00e6;
|
||||
--accent: #000000;
|
||||
--background-accent: #3be5f7;
|
||||
--accent: #e8e2d8;
|
||||
--background-accent: #d4cec0;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user