Compare commits
3 Commits
version_16
...
version_17
| Author | SHA1 | Date | |
|---|---|---|---|
| ca891040f7 | |||
| 5ff5c51b50 | |||
| 88123e84b1 |
@@ -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.", videoSrc: "https://example.com/consulta.mp4", videoAriaLabel: "consulta oftalmológica"
|
||||
},
|
||||
{
|
||||
title: "Exame de Vista", description: "Diagnóstico para correção visual adequada e prescrição de óculos ou lentes de contato.", videoSrc: "https://example.com/exame.mp4", videoAriaLabel: "exame de vista oftalmológico"
|
||||
},
|
||||
{
|
||||
title: "Diagnóstico de Doenças Oculares", description: "Identificação e tratamento de glaucoma, catarata, inflamações e outras patologias.", videoSrc: "https://example.com/diagnostico.mp4", videoAriaLabel: "diagnóstico oftalmológico"
|
||||
},
|
||||
{
|
||||
title: "Acompanhamento Visual", description: "Monitoramento contínuo da saúde ocular ao longo do tempo para prevenção e controle.", videoSrc: "https://example.com/acompanhamento.mp4", videoAriaLabel: "acompanhamento visual médico"
|
||||
},
|
||||
{
|
||||
title: "Avaliação para Óculos", description: "Determinação precisa da receita ideal com conforto visual máximo.", videoSrc: "https://example.com/oculos.mp4", videoAriaLabel: "avaliação para óculos"
|
||||
},
|
||||
]}
|
||||
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">
|
||||
|
||||
Reference in New Issue
Block a user