Compare commits
19 Commits
version_7
...
version_14
| Author | SHA1 | Date | |
|---|---|---|---|
| ac21c77ec3 | |||
| 10ad39e629 | |||
| 7e7fe42561 | |||
| 56e69227c4 | |||
| e19762e9dc | |||
| 77efa6ce77 | |||
| 0c48d9ba0f | |||
| 919f56309c | |||
| 8e16b96cb3 | |||
| 6a7ea2f5a1 | |||
| a501bd7b6e | |||
| 2a8660a808 | |||
| 881da43203 | |||
| e02a2028a7 | |||
| 2bfed707b2 | |||
| 15b0741b32 | |||
| 8faad5824a | |||
| 9ecf5bc184 | |||
| 24d00a53f6 |
@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { DM_Sans } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Source_Sans_3 } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -20,12 +21,9 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans",
|
const sourceSans3 = Source_Sans_3({
|
||||||
subsets: ["latin"],
|
variable: "--font-source-sans-3",
|
||||||
});
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -37,7 +35,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
<body className={`${sourceSans3.variable} antialiased`}>
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
@@ -38,6 +37,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
brandName="Palancar Barbershop"
|
brandName="Palancar Barbershop"
|
||||||
button={{ text: "305-824-9966", href: "tel:3058249966" }}
|
button={{ text: "305-824-9966", href: "tel:3058249966" }}
|
||||||
|
buttonClassName="min-w-fit px-3 text-xs md:text-sm"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -46,8 +46,9 @@ export default function LandingPage() {
|
|||||||
logoText="Palancar Barbershop"
|
logoText="Palancar Barbershop"
|
||||||
description="Corte premium en el corazón de Hialeah. Mejore su estilo con maestros del oficio. Servicio de barbería diseñado para el hombre moderno."
|
description="Corte premium en el corazón de Hialeah. Mejore su estilo con maestros del oficio. Servicio de barbería diseñado para el hombre moderno."
|
||||||
buttons={[{ text: "Reservar Cita", href: "tel:3058249966" }]}
|
buttons={[{ text: "Reservar Cita", href: "tel:3058249966" }]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ApasF6ZFfKJ3lLObBgGARvGnPS/uploaded-1777594381425-5bkzkhum.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ApasF6ZFfKJ3lLObBgGARvGnPS/uploaded-1777601004182-ilf1hmww.png"
|
||||||
imageAlt="interior moderno de barbería"
|
imageAlt="interior moderno de barbería"
|
||||||
|
buttonClassName="text-sm md:text-base"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -96,6 +97,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
title="Menú de Precios"
|
title="Menú de Precios"
|
||||||
description="Servicios de calidad para ti."
|
description="Servicios de calidad para ti."
|
||||||
|
planButtonClassName="whitespace-nowrap text-xs md:text-sm px-3"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -123,18 +125,9 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
/>
|
containerClassName="max-w-7xl mx-auto"
|
||||||
</div>
|
contentClassName="max-w-7xl mx-auto"
|
||||||
|
buttonClassName="whitespace-nowrap px-4 text-sm"
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactSplit
|
|
||||||
useInvertedBackground={false}
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
tag="Contacto"
|
|
||||||
title="Contáctanos hoy"
|
|
||||||
description="Llámanos a nuestros números de atención: 305-824-9966 (Oficina) y 786-302-3671 (Celular)."
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ApasF6ZFfKJ3lLObBgGARvGnPS/uploaded-1777594381425-5bkzkhum.jpg"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -150,4 +143,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter), sans-serif;
|
font-family: var(--font-source-sans-3), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-dm-sans), sans-serif;
|
font-family: var(--font-source-sans-3), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user