Compare commits
8 Commits
version_11
...
version_14
| Author | SHA1 | Date | |
|---|---|---|---|
| ac21c77ec3 | |||
| 10ad39e629 | |||
| 7e7fe42561 | |||
| 56e69227c4 | |||
| e19762e9dc | |||
| 77efa6ce77 | |||
| 0c48d9ba0f | |||
| 919f56309c |
@@ -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
|
||||||
|
|||||||
@@ -37,7 +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-[240px]"
|
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?_wi=1"
|
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>
|
||||||
|
|
||||||
@@ -125,6 +127,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
containerClassName="max-w-7xl mx-auto"
|
containerClassName="max-w-7xl mx-auto"
|
||||||
contentClassName="max-w-7xl mx-auto"
|
contentClassName="max-w-7xl mx-auto"
|
||||||
|
buttonClassName="whitespace-nowrap px-4 text-sm"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -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