Update src/app/servicos/page.tsx

This commit is contained in:
2026-03-27 03:34:56 +00:00
parent 8aa7a3a1ea
commit 6340da23ab

View File

@@ -12,29 +12,25 @@ export default function LandingPage() {
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Início",
id: "/",
},
{
name: "Serviços",
id: "/servicos",
},
{
name: "Sobre",
id: "/sobre",
},
{
name: "Contato",
id: "/contato",
},
{ name: "Início", id: "/" },
{ name: "Serviços", id: "/servicos" },
{ name: "Sobre", id: "/sobre" },
{ name: "Contato", id: "/contato" }
]}
brandName="Espaço Odonto"
button={{ text: "Agendar", href: "/contato" }}
/>
</div>
@@ -45,42 +41,10 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Reabilitação",
name: "Implantes Premium",
price: "Sob Consulta",
rating: 5,
reviewCount: "50+",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg?_wi=3",
},
{
id: "2",
brand: "Estética",
name: "Ortodontia",
price: "Sob Consulta",
rating: 5,
reviewCount: "80+",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg?_wi=4",
},
{
id: "3",
brand: "Infantil",
name: "Odontopediatria",
price: "Sob Consulta",
rating: 5,
reviewCount: "40+",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg?_wi=5",
},
{
id: "4",
brand: "Clínico",
name: "Endodontia",
price: "Sob Consulta",
rating: 5,
reviewCount: "60+",
imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg?_wi=6",
},
{ id: "1", brand: "Reabilitação", name: "Implantes Premium", price: "Sob Consulta", rating: 5, reviewCount: "50+", imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg" },
{ id: "2", brand: "Estética", name: "Ortodontia", price: "Sob Consulta", rating: 5, reviewCount: "80+", imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg" },
{ id: "3", brand: "Infantil", name: "Odontopediatria", price: "Sob Consulta", rating: 5, reviewCount: "40+", imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg" },
{ id: "4", brand: "Clínico", name: "Endodontia", price: "Sob Consulta", rating: 5, reviewCount: "60+", imageSrc: "http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg" }
]}
title="Tratamentos Premium"
description="Soluções completas para sua saúde bucal."
@@ -89,47 +53,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg?_wi=7"
imageSrc="http://img.b2bpic.net/free-photo/dentist-patient-happy-smiley_23-2148338140.jpg"
columns={[
{
title: "Tratamentos",
items: [
{
label: "Implantes",
href: "/servicos",
},
{
label: "Ortodontia",
href: "/servicos",
},
],
},
{
title: "Sobre Nós",
items: [
{
label: "Nossa História",
href: "/sobre",
},
{
label: "Equipe",
href: "/sobre",
},
],
},
{
title: "Suporte",
items: [
{
label: "Contato",
href: "/contato",
},
{
label: "Privacidade",
href: "#",
},
],
},
{ title: "Tratamentos", items: [{ label: "Implantes", href: "/servicos" }, { label: "Ortodontia", href: "/servicos" }] },
{ title: "Sobre Nós", items: [{ label: "Nossa História", href: "/sobre" }, { label: "Equipe", href: "/sobre" }] },
{ title: "Suporte", items: [{ label: "Contato", href: "/contato" }, { label: "Privacidade", href: "#" }] }
]}
copyrightText="© 2025 Clínica Espaço Odonto | Campos dos Goytacazes - RJ"
/>
@@ -137,4 +65,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}