Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5afb8a9b0f | |||
| 0aaa1e4492 | |||
| 8ba4bfedb6 | |||
| cafb77bd1f | |||
| 90ba88c5a3 |
@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
|
||||
@@ -38,7 +37,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
|
||||
102
src/app/page.tsx
102
src/app/page.tsx
@@ -28,31 +28,25 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About Us", id: "about"},
|
||||
{
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Inicio", id: "hero" },
|
||||
{ name: "Nosotros", id: "about" },
|
||||
{ name: "Servicios", id: "features" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
]}
|
||||
brandName="Llantera Hacienda"
|
||||
brandName="Hacienda Llantera"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Llantera Hacienda"
|
||||
description="Your safety on the road is our priority. We offer the best tires and automotive maintenance services in the region."
|
||||
logoText="Hacienda Llantera"
|
||||
description="Ubicados en 1550 N Rancho Dr, Las Vegas, NV 89106. Tu seguridad en el camino es nuestra prioridad. Abierto todos los días de 8:00 AM a 8:00 PM."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Appointment", href: "#contact"},
|
||||
{
|
||||
text: "View Services", href: "#features"},
|
||||
{ text: "Llamar ahora: +1 (702) 333-0024", href: "tel:+17023330024" },
|
||||
{ text: "Ver Servicios", href: "#features" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-mechanic-holding-tyre_1170-1151.jpg?_wi=1"
|
||||
imageAlt="Professional tire service"
|
||||
imageAlt="Hacienda Llantera Service"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -60,18 +54,15 @@ export default function LandingPage() {
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Quality that backs us up"
|
||||
description="With over 20 years of experience, at Llantera Hacienda we combine cutting-edge technology with the personalized attention your vehicle deserves."
|
||||
title="Expertos en Cuidado Automotriz"
|
||||
description="En Hacienda Llantera, estamos comprometidos a ofrecerte el mejor servicio de neumáticos y mecánica en Las Vegas. Con años de experiencia y un horario flexible, siempre estamos listos para ayudarte."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Premium Tires", description: "Leading brands with full warranty."},
|
||||
{
|
||||
title: "Brake Experts", description: "Guaranteed safety on every trip."},
|
||||
{
|
||||
title: "Fast Service", description: "Your time is valuable, which is why we are efficient."},
|
||||
{ title: "Horario Extendido", description: "De 8:00 AM a 8:00 PM, todos los días." },
|
||||
{ title: "Ubicación Conveniente", description: "1550 N Rancho Dr, Las Vegas, NV 89106." },
|
||||
{ title: "Atención Personalizada", description: "Llámanos al +1 (702) 333-0024 para cualquier duda." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-car-mechanic-using-tablet-device-car-repair-shop_23-2150367543.jpg"
|
||||
imageAlt="Expert mechanics team"
|
||||
imageAlt="Sobre Nosotros"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -83,15 +74,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Tire Replacement", description: "Professional installation and precise balancing.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-holding-tyre_1170-1151.jpg?_wi=2"},
|
||||
{
|
||||
id: "2", title: "Alignment and Balancing", description: "For a smooth and safe drive.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-holding-tyre_1170-1151.jpg?_wi=3"},
|
||||
{
|
||||
id: "3", title: "Suspension Repair", description: "High-strength and durable components.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-holding-tyre_1170-1151.jpg?_wi=4"},
|
||||
{ id: "1", title: "Cambio de Llantas", description: "Instalación y balanceo profesional.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-holding-tyre_1170-1151.jpg?_wi=2" },
|
||||
{ id: "2", title: "Alineación", description: "Mantén tu dirección precisa.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-holding-tyre_1170-1151.jpg?_wi=3" },
|
||||
{ id: "3", title: "Reparaciones Rápidas", description: "Servicio de 8 AM a 8 PM diario.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-holding-tyre_1170-1151.jpg?_wi=4" },
|
||||
]}
|
||||
title="Specialized Services"
|
||||
description="Comprehensive care to keep your car in optimal condition."
|
||||
title="Nuestros Servicios"
|
||||
description="Soluciones completas para tu vehículo con la calidad de Hacienda Llantera."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -101,32 +89,23 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "John Perez", handle: "@johnp", testimonial: "Excellent service, very fast and professional.", imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-beautiful-woman-making-like-gesture_74855-2916.jpg?_wi=1"},
|
||||
{
|
||||
id: "2", name: "Mary G.", handle: "@maryg", testimonial: "The best tire shop in town, very fair prices.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-woman-living-room_329181-2677.jpg"},
|
||||
{
|
||||
id: "3", name: "Charles Ruiz", handle: "@charlesr", testimonial: "Great attention, they explained everything in detail.", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-talking-her-car-mechanic-repair-shop_637285-8670.jpg"},
|
||||
{
|
||||
id: "4", name: "Anne Lopez", handle: "@annelopez", testimonial: "Reliable and honest. My favorite place for car care.", imageSrc: "http://img.b2bpic.net/free-photo/brunette-businesswoman-posing_23-2148142604.jpg"},
|
||||
{
|
||||
id: "5", name: "Louis Mendoza", handle: "@louism", testimonial: "Very well-trained technical staff, they solve any problem.", imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-beautiful-woman-making-like-gesture_74855-2916.jpg?_wi=2"},
|
||||
{ id: "1", name: "Cliente Local", handle: "@lasvegas", testimonial: "El horario de 8 a 8 me salvó de un apuro. ¡Muy recomendados!", imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-beautiful-woman-making-like-gesture_74855-2916.jpg?_wi=1" },
|
||||
{ id: "2", name: "Servicio", handle: "@rancho", testimonial: "Profesionales y atentos. Siempre llevo mi auto aquí.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-woman-living-room_329181-2677.jpg" },
|
||||
]}
|
||||
title="What our clients say"
|
||||
description="The trust of our customers is our best stamp of quality."
|
||||
title="Opiniones de nuestros clientes"
|
||||
description="Tu seguridad es nuestra mayor recompensa."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
tag="Contact"
|
||||
title="Schedule your maintenance"
|
||||
description="We are ready to assist you. Leave us your details and we will contact you immediately."
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contacto"
|
||||
title="¿Necesitas asistencia?"
|
||||
description="Estamos ubicados en 1550 N Rancho Dr, Las Vegas, NV 89106. Llámanos al +1 (702) 333-0024 durante nuestro horario de 8:00 AM a 8:00 PM."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-toolbox-machines_1170-1504.jpg"
|
||||
imageAlt="Contact us today"
|
||||
imageAlt="Contacto Hacienda Llantera"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -134,26 +113,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Services", href: "#features"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms and Conditions", href: "#"},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Nosotros", href: "#about" }, { label: "Servicios", href: "#features" }, { label: "Contacto", href: "#contact" }] },
|
||||
]}
|
||||
logoText="Llantera Hacienda"
|
||||
logoText="Hacienda Llantera"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user