25 Commits

Author SHA1 Message Date
ac21c77ec3 Update src/app/page.tsx 2026-05-01 02:36:02 +00:00
10ad39e629 Update theme fonts 2026-05-01 02:17:22 +00:00
7e7fe42561 Update theme fonts 2026-05-01 02:17:21 +00:00
56e69227c4 Merge version_13 into main
Merge version_13 into main
2026-05-01 01:24:28 +00:00
e19762e9dc Update src/app/page.tsx 2026-05-01 01:24:25 +00:00
77efa6ce77 Merge version_12 into main
Merge version_12 into main
2026-05-01 01:20:03 +00:00
0c48d9ba0f Update src/app/page.tsx 2026-05-01 01:19:57 +00:00
919f56309c Merge version_11 into main
Merge version_11 into main
2026-05-01 01:14:29 +00:00
8e16b96cb3 Update src/app/page.tsx 2026-05-01 01:14:26 +00:00
6a7ea2f5a1 Merge version_10 into main
Merge version_10 into main
2026-05-01 01:10:25 +00:00
a501bd7b6e Update src/app/page.tsx 2026-05-01 01:10:22 +00:00
2a8660a808 Merge version_9 into main
Merge version_9 into main
2026-05-01 01:07:42 +00:00
881da43203 Update src/app/page.tsx 2026-05-01 01:07:36 +00:00
e02a2028a7 Merge version_8 into main
Merge version_8 into main
2026-05-01 00:52:00 +00:00
2bfed707b2 Update src/app/page.tsx 2026-05-01 00:51:54 +00:00
15b0741b32 Merge version_8 into main
Merge version_8 into main
2026-05-01 00:51:33 +00:00
8faad5824a Update src/app/page.tsx 2026-05-01 00:51:27 +00:00
9ecf5bc184 Merge version_7 into main
Merge version_7 into main
2026-05-01 00:19:17 +00:00
7c2d3008b4 Update src/app/page.tsx 2026-05-01 00:19:14 +00:00
24d00a53f6 Merge version_7 into main
Merge version_7 into main
2026-04-30 23:42:34 +00:00
ad0997e1b6 Update src/app/page.tsx 2026-04-30 23:42:31 +00:00
13a728fba2 Merge version_6 into main
Merge version_6 into main
2026-04-30 23:24:21 +00:00
c8c0c76c2a Update src/app/page.tsx 2026-04-30 23:24:18 +00:00
60c19a08c1 Merge version_5 into main
Merge version_5 into main
2026-04-30 21:45:17 +00:00
c01d347807 Merge version_5 into main
Merge version_5 into main
2026-04-30 21:44:49 +00:00
3 changed files with 38 additions and 28 deletions

View File

@@ -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

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactText from '@/components/sections/contact/ContactText';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
@@ -10,7 +10,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import FaqBase from '@/components/sections/faq/FaqBase';
import { Instagram, Scissors, Sparkles, Droplets, Zap, Eye, User } from "lucide-react";
import { Instagram, Scissors, Sparkles, Droplets, Zap, Eye, User, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -37,6 +37,7 @@ export default function LandingPage() {
]}
brandName="Palancar Barbershop"
button={{ text: "305-824-9966", href: "tel:3058249966" }}
buttonClassName="min-w-fit px-3 text-xs md:text-sm"
/>
</div>
@@ -45,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="http://img.b2bpic.net/free-photo/barber-with-scissors-barbershop_140725-7670.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>
@@ -66,7 +68,7 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{ icon: Scissors, title: "Corte de Pelo", description: "Desde $25" },
{ 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" },
@@ -85,10 +87,17 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
plans={[
{ id: "p1", badge: "Disponible", price: "$25", subtitle: "Corte de Pelo", buttons: [{ text: "Reservar 305-824-9966", href: "tel:3058249966" }], features: ["Fade", "Estilo", "Lavado"] }
{ id: "p1", badge: "Corte", price: "$25", subtitle: "Corte de Pelo", buttons: [{ text: "Llamar", href: "tel:3058249966" }], features: [] },
{ id: "p2", badge: "Cortes", price: "$15", subtitle: "Cortes", buttons: [{ text: "Llamar", href: "tel:3058249966" }], features: [] },
{ id: "p3", badge: "Lavado", price: "$10", subtitle: "Lavado de Cabeza", buttons: [{ text: "Llamar", href: "tel:3058249966" }], features: [] },
{ id: "p4", badge: "Afeitado", price: "$10", subtitle: "Afeitado", buttons: [{ text: "Llamar", href: "tel:3058249966" }], features: [] },
{ id: "p5", badge: "Barba", price: "$20", subtitle: "Barba", buttons: [{ text: "Llamar", href: "tel:3058249966" }], features: [] },
{ id: "p6", badge: "Candado", price: "$10", subtitle: "Candado", buttons: [{ text: "Llamar", href: "tel:3058249966" }], features: [] },
{ id: "p7", badge: "Cejas", price: "$10", subtitle: "Cejas", buttons: [{ text: "Llamar", href: "tel:3058249966" }], features: [] },
]}
title="Menú de Precios"
description="Llame para su próxima cita."
description="Servicios de calidad para ti."
planButtonClassName="whitespace-nowrap text-xs md:text-sm px-3"
/>
</div>
@@ -99,7 +108,7 @@ export default function LandingPage() {
faqs={[
{ id: "q1", title: "¿Cuál es su dirección?", content: "4955 West 6th Ave, Hialeah, FL 33012" },
{ id: "q2", title: "¿Cuál es su horario?", content: "Lunes a Sábados 9:00 AM - 7:00 PM" },
{ id: "q3", title: "¿Teléfonos de contacto?", content: "305-824-9966 / 786-302-3671" },
{ id: "q3", title: "¿Teléfonos de contacto?", content: "305-824-9966 Oficina / 786-302-3671 Celular" },
]}
title="Información de Contacto"
description="Llame para su próxima cita."
@@ -107,24 +116,27 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Contacto"
title="Llame para su próxima cita"
description="4955 West 6th Ave, Hialeah, FL 33012 | 305-824-9966"
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/barber-with-scissors-barbershop_140725-7670.jpg?_wi=2"
<div id="contact-text" data-section="contact-text">
<ContactText
text="¿Listo para tu próximo corte? Llámanos hoy."
buttons={[
{ text: "305-824-9966 (Oficina)", href: "tel:3058249966" },
{ text: "786-302-3671 (Celular)", href: "tel:7863023671" }
]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
containerClassName="max-w-7xl mx-auto"
contentClassName="max-w-7xl mx-auto"
buttonClassName="whitespace-nowrap px-4 text-sm"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Palancar Barbershop"
copyrightText="© 2025 Palancar Barbershop. Llame al 305-824-9966"
logoText=""
copyrightText="© 2025 Palancar Barbershop."
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
]}
/>
</div>

View File

@@ -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;
}