3 Commits

Author SHA1 Message Date
ca891040f7 Update src/app/page.tsx 2026-03-10 16:00:17 +00:00
5ff5c51b50 Update src/app/page.tsx 2026-03-10 15:30:26 +00:00
88123e84b1 Merge version_16 into main
Merge version_16 into main
2026-03-10 15:26:37 +00:00

View File

@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
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 FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
@@ -61,32 +60,49 @@ export default function LandingPage() {
</div>
<div id="specialties" data-section="specialties">
<FeatureCardOne
title="Especialidades e Serviços"
description="Oferecemos uma gama completa de serviços oftalmológicos com diagnóstico preciso e tratamento eficaz."
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: "", imageAlt: ""
},
{
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: "", imageAlt: ""
},
{
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: "", imageAlt: ""
},
]}
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/>
<div style={{ padding: "var(--vw-3) var(--vw-1_5)", textAlign: "center", backgroundColor: "var(--background-accent)" }}>
<h2 style={{ fontSize: "2rem", marginBottom: "1.5rem", fontWeight: "bold" }}>Tabela de Exames e Serviços</h2>
<div style={{ overflowX: "auto", margin: "0 auto", maxWidth: "100%" }}>
<table style={{
width: "100%", borderCollapse: "collapse", backgroundColor: "var(--card)", borderRadius: "8px", overflow: "hidden", boxShadow: "0 2px 4px rgba(0,0,0,0.1)"
}}>
<thead>
<tr style={{ backgroundColor: "var(--primary-cta)", color: "var(--primary-cta-text)" }}>
<th style={{ padding: "1rem", textAlign: "left", borderRight: "1px solid var(--accent)" }}>Exame/Serviço</th>
<th style={{ padding: "1rem", textAlign: "left", borderRight: "1px solid var(--accent)" }}>Descrição</th>
<th style={{ padding: "1rem", textAlign: "left" }}>Indicação</th>
</tr>
</thead>
<tbody>
<tr style={{ borderBottom: "1px solid var(--accent)" }}>
<td style={{ padding: "1rem", fontWeight: "bold", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Consulta Oftalmológica</td>
<td style={{ padding: "1rem", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Avaliação completa da saúde ocular com anamnese detalhada e testes de visão.</td>
<td style={{ padding: "1rem", color: "var(--foreground)" }}>Para todos que desejam verificar a saúde dos olhos</td>
</tr>
<tr style={{ borderBottom: "1px solid var(--accent)" }}>
<td style={{ padding: "1rem", fontWeight: "bold", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Exame de Vista</td>
<td style={{ padding: "1rem", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Diagnóstico para correção visual adequada e prescrição de óculos ou lentes de contato.</td>
<td style={{ padding: "1rem", color: "var(--foreground)" }}>Dificuldade para enxergar, visão borrada ou embaçada</td>
</tr>
<tr style={{ borderBottom: "1px solid var(--accent)" }}>
<td style={{ padding: "1rem", fontWeight: "bold", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Diagnóstico de Doenças Oculares</td>
<td style={{ padding: "1rem", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Identificação e tratamento de glaucoma, catarata, inflamações e outras patologias.</td>
<td style={{ padding: "1rem", color: "var(--foreground)" }}>Suspeita de glaucoma, catarata ou outras doenças oculares</td>
</tr>
<tr style={{ borderBottom: "1px solid var(--accent)" }}>
<td style={{ padding: "1rem", fontWeight: "bold", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Acompanhamento Visual</td>
<td style={{ padding: "1rem", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Monitoramento contínuo da saúde ocular ao longo do tempo para prevenção e controle.</td>
<td style={{ padding: "1rem", color: "var(--foreground)" }}>Pacientes com histórico de doenças oculares ou idosos</td>
</tr>
<tr>
<td style={{ padding: "1rem", fontWeight: "bold", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Avaliação para Óculos</td>
<td style={{ padding: "1rem", borderRight: "1px solid var(--accent)", color: "var(--foreground)" }}>Determinação precisa da receita ideal com conforto visual máximo.</td>
<td style={{ padding: "1rem", color: "var(--foreground)" }}>Necessidade de correção visual ou atualização de prescrição</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="testimonials" data-section="testimonials">
@@ -168,4 +184,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}