3 Commits

Author SHA1 Message Date
417b87c05b Switch to version 1: modified src/app/page.tsx 2026-03-27 09:05:44 +00:00
2a89d1b510 Merge version_2 into main
Merge version_2 into main
2026-03-27 09:05:27 +00:00
fe474f0f6f Merge version_2 into main
Merge version_2 into main
2026-03-27 09:05:03 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
@@ -41,18 +41,28 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardGallery
<HeroSplitTestimonial
useInvertedBackground={false}
background={{
variant: "gradient-bars"}}
title="Profesjonalny warsztat samochodowy w Lublinie"
description="Szybka diagnoza, uczciwe ceny i terminowa realizacja Twoich napraw."
background={{ variant: "gradient-bars" }}
testimonials={[
{
name: "Marek Nowak", handle: "@marek-n", testimonial: "Szybka i profesjonalna obsługa, auto gotowe na czas.", rating: 5,
},
{
name: "Anna Kowalska", handle: "@anna-k", testimonial: "Transparentna wycena, polecam każdemu kierowcy.", rating: 5,
},
]}
buttons={[
{ text: "Zadzwoń teraz", href: "tel:606157441" },
{ text: "Umów wizytę", href: "#contact" },
]}
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWOhzMbsw1FD4o1K5jHmz161ND/professional-auto-repair-workshop-interi-1774601512102-1e350722.png" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWOhzMbsw1FD4o1K5jHmz161ND/abstract-dark-blue-automotive-texture-cl-1774601511536-0ac6f2eb.png?_wi=1" }
{
text: "Zadzwoń teraz", href: "tel:606157441"},
{
text: "Umów wizytę", href: "#contact"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWOhzMbsw1FD4o1K5jHmz161ND/professional-auto-repair-workshop-interi-1774601512102-1e350722.png"
mediaAnimation="slide-up"
/>
</div>
@@ -109,18 +119,22 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWOhzMbsw1FD4o1K5jHmz161ND/abstract-dark-blue-automotive-texture-cl-1774601511536-0ac6f2eb.png?_wi=2"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWOhzMbsw1FD4o1K5jHmz161ND/abstract-dark-blue-automotive-texture-cl-1774601511536-0ac6f2eb.png"
columns={[
{
title: "Warsztat", items: [
{ label: "O nas", href: "#" },
{ label: "Usługi", href: "#services" },
{
label: "O nas", href: "#"},
{
label: "Usługi", href: "#services"},
],
},
{
title: "Kontakt", items: [
{ label: "Główna 18A, Lublin", href: "#" },
{ label: "Tel: 606 157 441", href: "tel:606157441" },
{
label: "Główna 18A, Lublin", href: "#"},
{
label: "Tel: 606 157 441", href: "tel:606157441"},
],
},
]}