Compare commits
10 Commits
version_10
...
version_14
| Author | SHA1 | Date | |
|---|---|---|---|
| ac21c77ec3 | |||
| 10ad39e629 | |||
| 7e7fe42561 | |||
| 56e69227c4 | |||
| e19762e9dc | |||
| 77efa6ce77 | |||
| 0c48d9ba0f | |||
| 919f56309c | |||
| 8e16b96cb3 | |||
| 6a7ea2f5a1 |
@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
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",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -37,7 +35,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -37,7 +37,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
brandName="Palancar Barbershop"
|
||||
button={{ text: "305-824-9966", href: "tel:3058249966" }}
|
||||
buttonClassName="min-w-[200px]"
|
||||
buttonClassName="min-w-fit px-3 text-xs md:text-sm"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -46,8 +46,9 @@ export default function LandingPage() {
|
||||
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."
|
||||
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"
|
||||
buttonClassName="text-sm md:text-base"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -96,6 +97,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
title="Menú de Precios"
|
||||
description="Servicios de calidad para ti."
|
||||
planButtonClassName="whitespace-nowrap text-xs md:text-sm px-3"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -124,7 +126,8 @@ export default function LandingPage() {
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
containerClassName="max-w-7xl mx-auto"
|
||||
contentClassName="max-w-4xl mx-auto"
|
||||
contentClassName="max-w-7xl mx-auto"
|
||||
buttonClassName="whitespace-nowrap px-4 text-sm"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-source-sans-3), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
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