Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c98972381 | |||
| e508b75e3c | |||
| e5f8953c2f | |||
| a0612bf461 | |||
| fd6b024005 |
@@ -5,10 +5,9 @@ import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Check, Clock, CreditCard, Droplets, Info, MapPin, Wind } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -41,17 +40,15 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
title="Πλυντήριο Αυτοκινήτων 24/7 στη Νέα Φλογητά"
|
||||
description="Πλύσιμο αυτοκινήτου όλο το 24ωρο με εύκολη και γρήγορη εξυπηρέτηση."
|
||||
<HeroLogoBillboard
|
||||
logoText="Car Wash 24/7"
|
||||
description="Πλύσιμο αυτοκινήτου όλο το 24ωρο με εύκολη και γρήγορη εξυπηρέτηση στη Νέα Φλογητά."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BuAOTW0ix0HcFoHF8Pfy5vooK5/uploaded-1775572770072-2npyquai.png"
|
||||
buttons={[
|
||||
{
|
||||
text: "Οδηγίες στο Χάρτη", href: "#location"},
|
||||
{
|
||||
text: "Καλέστε τώρα", href: "tel:6984718568"},
|
||||
text: "Καλέστε τώρα", href: "tel:+306984718568"},
|
||||
]}
|
||||
background={{ variant: "glowing-orb" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -92,34 +89,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Γιώργος Π.", handle: "@giorgos", testimonial: "Με 3€ μπορείς να κάνεις πολύ καλό πλύσιμο. Πολύ ικανοποιημένος.", rating: 5,
|
||||
},
|
||||
{
|
||||
id: "2", name: "Μαρία Κ.", handle: "@maria", testimonial: "24 ώρες διαθέσιμο, το καλύτερο στη περιοχή.", rating: 5,
|
||||
},
|
||||
{
|
||||
id: "3", name: "Νίκος Α.", handle: "@nikos", testimonial: "Καλή εμπειρία και πολύ λογικές τιμές.", rating: 4,
|
||||
},
|
||||
{
|
||||
id: "4", name: "Ελένη Μ.", handle: "@eleni", testimonial: "Γρήγορο και καθαρό αποτέλεσμα κάθε φορά.", rating: 5,
|
||||
},
|
||||
{
|
||||
id: "5", name: "Κώστας Τ.", handle: "@kostas", testimonial: "Εύκολη χρήση, εξαιρετικό self-service.", rating: 5,
|
||||
},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Τι λένε οι πελάτες μας"
|
||||
description="Πραγματικές κριτικές από το πλυντήριο μας."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="facilities" data-section="facilities">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
@@ -146,10 +115,28 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="location" data-section="location">
|
||||
<div className="container mx-auto py-20 px-4">
|
||||
<h2 className="text-3xl font-bold mb-4">Τοποθεσία</h2>
|
||||
<p className="text-lg">Παύλου Μελά 15, Νέα Φλογητά. Σας περιμένουμε ανά πάσα στιγμή.</p>
|
||||
</div>
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Επικοινωνία", items: [
|
||||
{
|
||||
label: "6984718568", href: "tel:+306984718568"},
|
||||
{
|
||||
label: "Facebook", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Διεύθυνση", items: [
|
||||
{
|
||||
label: "Παύλου Μελά 15", href: "#"},
|
||||
{
|
||||
label: "Νέα Φλογητά", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Τοποθεσία"
|
||||
copyrightText="© 2026 | Car Wash Nea Flogita"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
@@ -158,7 +145,7 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Επικοινωνία", items: [
|
||||
{
|
||||
label: "6984718568", href: "tel:6984718568"},
|
||||
label: "6984718568", href: "tel:+306984718568"},
|
||||
{
|
||||
label: "Facebook", href: "#"},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user