Compare commits
7 Commits
version_13
...
version_15
| Author | SHA1 | Date | |
|---|---|---|---|
| b60b1d962f | |||
| 2dc4e65324 | |||
| ac21c77ec3 | |||
| 4e698bb534 | |||
| 10ad39e629 | |||
| 7e7fe42561 | |||
| 56e69227c4 |
@@ -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
|
||||
|
||||
@@ -46,7 +46,7 @@ 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"
|
||||
/>
|
||||
@@ -59,6 +59,7 @@ export default function LandingPage() {
|
||||
{ type: "text", content: "Tradición y Estilo Superior" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/from-hands-shaving-neck_23-2147778916.jpg", alt: "barbero profesional cuidando al cliente" },
|
||||
]}
|
||||
buttons={[{ text: "Reservar Cita", href: "tel:3058249966" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -68,13 +69,13 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ icon: Scissors, title: "Corte de Pelo", description: "$25" },
|
||||
{ icon: Sparkles, title: "Cortes", description: "$15" },
|
||||
{ icon: Droplets, title: "Lavado de Cabeza", description: "$10" },
|
||||
{ icon: Zap, title: "Afeitado", description: "$10" },
|
||||
{ icon: User, title: "Barba", description: "$20" },
|
||||
{ icon: Scissors, title: "Candado", description: "$10" },
|
||||
{ icon: Eye, title: "Cejas", description: "$10" },
|
||||
{ icon: Scissors, title: "Corte de Pelo", description: "$25", button: { text: "Llamar", href: "tel:3058249966" } },
|
||||
{ icon: Sparkles, title: "Cortes", description: "$15", button: { text: "Llamar", href: "tel:3058249966" } },
|
||||
{ icon: Droplets, title: "Lavado de Cabeza", description: "$10", button: { text: "Llamar", href: "tel:3058249966" } },
|
||||
{ icon: Zap, title: "Afeitado", description: "$10", button: { text: "Llamar", href: "tel:3058249966" } },
|
||||
{ icon: User, title: "Barba", description: "$20", button: { text: "Llamar", href: "tel:3058249966" } },
|
||||
{ icon: Scissors, title: "Candado", description: "$10", button: { text: "Llamar", href: "tel:3058249966" } },
|
||||
{ icon: Eye, title: "Cejas", description: "$10", button: { text: "Llamar", href: "tel:3058249966" } },
|
||||
]}
|
||||
title="Nuestros Servicios"
|
||||
description="Servicios de barbería profesionales."
|
||||
@@ -113,6 +114,7 @@ export default function LandingPage() {
|
||||
title="Información de Contacto"
|
||||
description="Llame para su próxima cita."
|
||||
faqsAnimation="slide-up"
|
||||
buttons={[{ text: "Reservar Cita", href: "tel:3058249966" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -133,7 +135,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText=""
|
||||
logoText="Palancar Barbershop"
|
||||
copyrightText="© 2025 Palancar Barbershop."
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
|
||||
|
||||
@@ -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