22 Commits

Author SHA1 Message Date
39d887cb1b Update theme colors 2026-05-12 22:24:51 +00:00
3c2b33ebca Update theme colors 2026-05-12 22:24:40 +00:00
c78b36e471 Update src/app/page.tsx 2026-05-12 22:23:38 +00:00
65255d61e5 Merge version_8 into main
Merge version_8 into main
2026-05-12 22:23:01 +00:00
d937c85900 Merge version_7 into main
Merge version_7 into main
2026-05-12 22:22:59 +00:00
a42170a1d3 Update theme colors 2026-05-12 22:22:57 +00:00
c284add558 Update theme colors 2026-05-12 22:22:56 +00:00
f835083f7a Merge version_6 into main
Merge version_6 into main
2026-05-12 22:22:54 +00:00
99d85bfb51 Update theme colors 2026-05-12 22:22:51 +00:00
3e384fb987 Merge version_5 into main
Merge version_5 into main
2026-05-12 22:22:01 +00:00
cc47784e2b Update src/app/page.tsx 2026-05-12 22:21:55 +00:00
a4fa4a2ce4 Merge version_4 into main
Merge version_4 into main
2026-05-12 22:21:00 +00:00
f1ad20bc35 Update theme fonts 2026-05-12 22:20:58 +00:00
71e780a25e Update theme fonts 2026-05-12 22:20:57 +00:00
2afa816c2f Update theme fonts 2026-05-12 22:20:53 +00:00
26f112f701 Update theme fonts 2026-05-12 22:20:53 +00:00
05e4041b80 Merge version_4 into main
Merge version_4 into main
2026-05-12 22:20:26 +00:00
5dab095fcf Update theme colors 2026-05-12 22:20:23 +00:00
2fc3748bab Merge version_3 into main
Merge version_3 into main
2026-05-12 22:20:12 +00:00
fb587c46c7 Update theme colors 2026-05-12 22:20:09 +00:00
d576e19751 Merge version_2 into main
Merge version_2 into main
2026-05-12 22:20:07 +00:00
747aa311ee Merge version_1 into main
Merge version_1 into main
2026-05-12 22:02:55 +00:00
4 changed files with 42 additions and 55 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -21,10 +23,15 @@ export const metadata: Metadata = {
},
};
const poppins = Poppins({
variable: "--font-poppins",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -35,7 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -2,17 +2,17 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { Award, Star, Zap, CheckCircle } from "lucide-react";
import { Award, Star, Zap, CheckCircle, Instagram, Facebook, Linkedin } from "lucide-react";
export default function LandingPage() {
return (
@@ -76,6 +76,7 @@ export default function LandingPage() {
<div id="about" data-section="about">
<SplitAbout
tag="Excelencia en Salud Dental"
textboxLayout="split"
useInvertedBackground={false}
title="Tu sonrisa es nuestra prioridad"
@@ -200,48 +201,27 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain"}}
<ContactCTA
tag="Contacto"
title="Agenda tu consulta hoy"
description="Estamos listos para cuidar tu salud. Escríbenos y nuestro equipo te contactará pronto."
buttonText="Enviar Solicitud"
title="Agenda tu consulta"
description="Da el siguiente paso hacia tu mejor sonrisa. Estamos aquí para guiarte en todo el proceso."
buttons={[
{ text: "Agendar por WhatsApp", href: "#" },
{ text: "Llamar ahora", href: "#" }
]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Servicios", items: [
{
label: "Odontología", href: "#"},
{
label: "Ortodoncia", href: "#"},
{
label: "Estética", href: "#"},
],
},
{
title: "Nosotros", items: [
{
label: "Equipo", href: "#team"},
{
label: "Testimonios", href: "#testimonial"},
],
},
{
title: "Legal", items: [
{
label: "Aviso de Privacidad", href: "#"},
{
label: "Términos", href: "#"},
],
},
]}
<FooterCard
logoText="DEM Dental"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Linkedin, href: "#", ariaLabel: "Linkedin" }
]}
/>
</div>
</ReactLenis>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-poppins), 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-poppins), sans-serif;
font-family: var(--font-public-sans), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f7f6f7;
--card: #ffffff;
--foreground: #0c1325;
--primary-cta: #0b07ff;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #0c1325;
--accent: #93b7ff;
--background-accent: #a8bae8;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #08d259;
--primary-cta: #170a70;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);