Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01f898eada | |||
| f9558c5a4d | |||
| ce26f1e1d3 | |||
| 143a34bdba | |||
| a18f391cbd | |||
| ed3ad454f0 | |||
| e02a020e3a | |||
| acc56c1450 | |||
| ee2efa5a3d | |||
| acd000a324 | |||
| 53ddc3ef4e | |||
| 836ad31000 | |||
| 072a7c02b8 | |||
| 273f0fb20c | |||
| a352f2464b | |||
| 01f0f408cf |
@@ -1,49 +1,16 @@
|
|||||||
import type { Metadata } from "next";
|
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 = {
|
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 visual de excelência. Consultas oftalmológicas completas com tecnologia moderna em Nova Mutum."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="pt-BR">
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1378,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,13 +2,14 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||||
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||||
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||||
|
import { Sparkles, Zap, Heart } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -37,20 +38,27 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboardSplit
|
<HeroBillboard
|
||||||
logoText="OFTALMOLOGIA"
|
title="Cuidado Visual de Excelência"
|
||||||
description="Cuidado completo para a saúde dos seus olhos com tecnologia moderna e atendimento humanizado."
|
description="Cuidado completo para a saúde dos seus olhos com tecnologia moderna e atendimento humanizado."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "📞 Agendar Consulta", href: "#contact" },
|
{ text: "📞 Agendar Consulta", href: "#contact" },
|
||||||
{ text: "💬 WhatsApp", href: "https://wa.me/5565999190657" },
|
{ text: "💬 WhatsApp", href: "https://wa.me/5565999190657" },
|
||||||
]}
|
]}
|
||||||
layoutOrder="default"
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARFztSxKGawKofg6qXWL5p5C2j/uploaded-1772725751716-5637zce4.webp"
|
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"
|
imageAlt="consultório oftalmologia médico exame olhos"
|
||||||
frameStyle="card"
|
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
tag="Bem-vindo"
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
marqueeItems={[
|
||||||
|
{ type: "text-icon", text: "Excelência em Oftalmologia", icon: Sparkles },
|
||||||
|
{ type: "text-icon", text: "Tecnologia Moderna", icon: Zap },
|
||||||
|
{ type: "text-icon", text: "Atendimento Humanizado", icon: Heart },
|
||||||
|
]}
|
||||||
|
showMarqueeCard={true}
|
||||||
|
marqueeSpeed={40}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -161,18 +169,13 @@ export default function LandingPage() {
|
|||||||
{ label: "📞 (65) 99919-0657", href: "tel:+5565999190657" },
|
{ label: "📞 (65) 99919-0657", href: "tel:+5565999190657" },
|
||||||
{
|
{
|
||||||
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: "📍 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: [
|
title: "Horários", items: [
|
||||||
{ label: "Seg-Qui: 8h - 12h | 13h30 - 18h", href: "#" },
|
{ label: "Seg-Qui: 8h - 11h30 | 13h30 - 18h", href: "#" },
|
||||||
{ label: "Sexta: 8h - 12h | 13h30 - 17h", href: "#" },
|
{ label: "Sexta: 8h - 11h30 | 13h30 - 17h", href: "#" },
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Redes Sociais", items: [
|
|
||||||
{ label: "WhatsApp", href: "https://wa.me/5565999190657" },
|
|
||||||
{ label: "Google", href: "#" },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #f5f0e9;
|
||||||
--card: #f0ffff;
|
--card: #ffffff;
|
||||||
--foreground: #000000;
|
--foreground: #2b2b2b;
|
||||||
--primary-cta: #41dff0;
|
--primary-cta: #2b2b2b;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #f0ffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #120a00e6;
|
--secondary-cta-text: #120a00e6;
|
||||||
--accent: #000000;
|
--accent: #e8e2d8;
|
||||||
--background-accent: #3be5f7;
|
--background-accent: #d4cec0;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user