Compare commits
65 Commits
version_3
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| 177f28d236 | |||
| 69bd079946 | |||
| f6d2cdeb80 | |||
| e825989727 | |||
| 7b9ed381f4 | |||
| 5d663a72da | |||
| 306fb45de5 | |||
| ed11160b29 | |||
| dfa26f108e | |||
| 804f5ad1bf | |||
| 03828782ee | |||
| f05edf8b80 | |||
| 1a47bd0fbb | |||
| 849ca714f2 | |||
| ae0ffbe46f | |||
| bd76f2eb61 | |||
| 1bad080277 | |||
| 122e9b553b | |||
| 8dff195d4c | |||
| 08c45133b3 | |||
| c758031c8a | |||
| f13e898010 | |||
| 6d02b24143 | |||
| 3fdfdbbd7a | |||
| 7435cbd9b2 | |||
| 6f63c09795 | |||
| 425b29148c | |||
| 4d1e639aae | |||
| 5928f82882 | |||
| b35a438d05 | |||
| 3ae07a3a0d | |||
| c4dde8cf06 | |||
| 317c9d27d0 | |||
| 21460c5160 | |||
| 03f0ab5052 | |||
| 062667c357 | |||
| eac85df572 | |||
| e999a0e8d0 | |||
| f59377a90d | |||
| 2e6b665e9e | |||
| a73a295ffc | |||
| 995d7c9d75 | |||
| a801a6e7be | |||
| ca411e17d5 | |||
| 0995503f0e | |||
| 12c097b9e8 | |||
| 15d011be4f | |||
| 1d2e10278f | |||
| e1e802bea8 | |||
| 6a5a857dca | |||
| f383ea79e7 | |||
| 3a0c026c25 | |||
| 01f898eada | |||
| 38d71dadb8 | |||
| 16b82121fc | |||
| e01e9a4aae | |||
| f9558c5a4d | |||
| 111691a15e | |||
| ce26f1e1d3 | |||
| 143a34bdba | |||
| a18f391cbd | |||
| ed3ad454f0 | |||
| e02a020e3a | |||
| acc56c1450 | |||
| acd000a324 |
@@ -1,49 +1,18 @@
|
||||
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 com tecnologia moderna e atendimento humanizado 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 +1380,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -7,7 +7,6 @@ import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -31,19 +30,17 @@ export default function LandingPage() {
|
||||
{ name: "Sobre", id: "about" },
|
||||
{ name: "Especialidades", id: "specialties" },
|
||||
{ name: "Avaliações", id: "testimonials" },
|
||||
{ name: "Contato", id: "contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Cuidado Visual de Excelência"
|
||||
description="Cuidado completo para a saúde dos seus olhos com tecnologia moderna e atendimento humanizado."
|
||||
title="O Melhor de Seu Olhar"
|
||||
description="Cuidado completo para a saúde dos seus olhos com tecnologia moderna e atendimento humanizado. ☎️ (65) 99919-0657"
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "📞 Agendar Consulta", href: "#contact" },
|
||||
{ text: "💬 WhatsApp", href: "https://wa.me/5565999190657" },
|
||||
{ text: "Agendar Consulta via WhatsApp", href: "https://wa.me/5565999190657" },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARFztSxKGawKofg6qXWL5p5C2j/uploaded-1772725751716-5637zce4.webp"
|
||||
imageAlt="consultório oftalmologia médico exame olhos"
|
||||
@@ -58,7 +55,6 @@ export default function LandingPage() {
|
||||
description={[
|
||||
"O Dr. Alexandre Nascimento é um oftalmologista experiente e comprometido com o bem-estar visual de seus pacientes. Com formação sólida em diagnóstico e tratamento de doenças oculares, oferece atendimento personalizado e humanizado.", "A clínica utiliza equipamentos modernos e tecnologia de última geração, permitindo diagnósticos precisos e tratamentos eficazes para diversas patologias oculares. Cada paciente é tratado com respeito, atenção e dedicação à excelência.", "Localizada em Nova Mutum, a clínica é referência em oftalmologia, com mais de 200 avaliações positivas de pacientes satisfeitos (4.9 ⭐)."
|
||||
]}
|
||||
buttons={[{ text: "Saiba Mais", href: "#specialties" }]}
|
||||
showBorder={true}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -71,19 +67,19 @@ export default function LandingPage() {
|
||||
tag="Serviços"
|
||||
features={[
|
||||
{
|
||||
title: "Consulta Oftalmológica", description: "Avaliação completa da saúde ocular com anamnese detalhada e testes de visão.", imageSrc: "http://img.b2bpic.net/free-photo/woman-having-eye-problem-pain-doctor-working-office-listening-patient-she-is-explaining-her-symptoms-healtcare-assistance-concept_657921-837.jpg", imageAlt: "consulta médico paciente consultório oftalmologia"
|
||||
title: "Consulta Oftalmológica", description: "Avaliação completa da saúde ocular com anamnese detalhada e testes de visão.", imageSrc: "", imageAlt: ""
|
||||
},
|
||||
{
|
||||
title: "Exame de Vista", description: "Diagnóstico para correção visual adequada e prescrição de óculos ou lentes de contato.", imageSrc: "http://img.b2bpic.net/free-photo/eye-doctor-with-female-patient-examination-modern-clinic-ophthalmologist-is-using-special-medical-equipment-eye-health_657921-161.jpg", imageAlt: "exame vista oftalmológico óptico tecnologia"
|
||||
title: "Exame de Vista", description: "Diagnóstico para correção visual adequada e prescrição de óculos ou lentes de contato.", imageSrc: "", imageAlt: ""
|
||||
},
|
||||
{
|
||||
title: "Diagnóstico de Doenças Oculares", description: "Identificação e tratamento de glaucoma, catarata, inflamações e outras patologias.", imageSrc: "http://img.b2bpic.net/free-photo/man-having-eye-sight-check_23-2149082434.jpg", imageAlt: "diagnóstico doença oftalmologia catarata glaucoma"
|
||||
title: "Diagnóstico de Doenças Oculares", description: "Identificação e tratamento de glaucoma, catarata, inflamações e outras patologias.", imageSrc: "", imageAlt: ""
|
||||
},
|
||||
{
|
||||
title: "Acompanhamento Visual", description: "Monitoramento contínuo da saúde ocular ao longo do tempo para prevenção e controle.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-testing-patient-eyesight_23-2149230018.jpg", imageAlt: "monitoramento saúde visual acompanhamento médico"
|
||||
title: "Acompanhamento Visual", description: "Monitoramento contínuo da saúde ocular ao longo do tempo para prevenção e controle.", imageSrc: "", imageAlt: ""
|
||||
},
|
||||
{
|
||||
title: "Avaliação para Óculos", description: "Determinação precisa da receita ideal com conforto visual máximo.", imageSrc: "http://img.b2bpic.net/free-photo/glasses-male-hands-workplace-front-computer_169016-18822.jpg", imageAlt: "óculos receita prescrição eyewear ótica"
|
||||
title: "Avaliação para Óculos", description: "Determinação precisa da receita ideal com conforto visual máximo.", imageSrc: "", imageAlt: ""
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
@@ -140,23 +136,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Agendamento"
|
||||
title="Agende sua Consulta Agora"
|
||||
description="Entre em contato conosco para marcar sua consulta. Estamos localizados em Nova Mutum, com horários convenientes para você cuidar da saúde dos seus olhos."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARFztSxKGawKofg6qXWL5p5C2j/uploaded-1772725758205-uzon5gw5.webp"
|
||||
imageAlt="consultório interior clínica moderno acolhedor"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="seu@email.com"
|
||||
buttonText="Enviar"
|
||||
termsText="Você receberá informações sobre agendamento conforme enviado. Respeitamos sua privacidade."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Dr. Alexandre Nascimento"
|
||||
@@ -174,18 +153,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: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f0ffff;
|
||||
--foreground: #000000;
|
||||
--primary-cta: #41dff0;
|
||||
--background: #efebe5;
|
||||
--card: #f7f2ea;
|
||||
--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: #e1b875;
|
||||
--background-accent: #d4cec0;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user