Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-27 23:54:38 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
@@ -112,15 +112,15 @@ export default function LandingPage() {
useInvertedBackground={true}
plans={[
{
id: "meat", badge: "Signature", price: "Κρέατα", subtitle: "Από επιλεγμένους παραγωγούς", buttons: [{ text: "View" }],
id: "meat", badge: "Signature", price: "Κρέατα", subtitle: "Από επιλεγμένους παραγωγούς", buttons: [{ text: "View" }],
features: ["Μοσχαρίσια μπριζόλα", "Σιδηρόδρομος", "Αρνίσια Παϊδάκια"]
},
{
id: "sea", badge: "Fresh", price: "Θαλασσινά", subtitle: "Φρέσκια ψαριά ημέρας", buttons: [{ text: "View" }],
id: "sea", badge: "Fresh", price: "Θαλασσινά", subtitle: "Φρέσκια ψαριά ημέρας", buttons: [{ text: "View" }],
features: ["Καλαμάρι σχάρας", "Μπακαλιάρος ψητός", "Αστακομακαρονάδα"]
},
{
id: "spec", badge: "New", price: "Specials", subtitle: "Ειδικές γεύσεις Πελώριος", buttons: [{ text: "View" }],
id: "spec", badge: "New", price: "Specials", subtitle: "Ειδικές γεύσεις Πελώριος", buttons: [{ text: "View" }],
features: ["Κριθαρότο θαλασσινών", "Premium ποικιλίες", "Chef's selection"]
}
]}
@@ -145,31 +145,31 @@ export default function LandingPage() {
</div>
<div id="location" data-section="location">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
<FaqSplitText
sideTitle="Τοποθεσία & Χρήσιμες Πληροφορίες"
sideDescription="Βρείτε μας εύκολα στην Νέα Πέλλα."
faqs={[
{ id: "1", title: "Διεύθυνση", content: "ΕΟ Γιαννιτσών Θεσσαλονίκης 13, Νέα Πέλλα" },
{ id: "2", title: "Ωράριο", content: "Ανοίγουμε καθημερινά από τις 11:00 π.μ." },
{ id: "3", title: "Parking", content: "Διαθέτουμε άνετο δωρεάν parking για τους πελάτες μας." }
]}
title="Τοποθεσία & Χρήσιμες Πληροφορίες"
description="Βρείτε μας εύκολα στην Νέα Πέλλα."
faqsAnimation="blur-reveal"
/>
</div>
<div id="reservation" data-section="reservation">
<ContactText
useInvertedBackground={true}
<ContactSplit
tag="Κρατήσεις"
title="Κλείστε το τραπέζι σας"
description="Επικοινωνήστε μαζί μας για να διασφαλίσετε τη θέση σας στο Πελώριος."
background={{ variant: "gradient-bars" }}
text="Κλείστε το τραπέζι σας σήμερα και απολαύστε μια αξέχαστη εμπειρία στο Πελώριος."
buttons={[{ text: "Κράτηση Τώρα", href: "tel:2382032930" }]}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/empty-tables-fancy-restaurant_140725-8730.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterBaseCard
columns={[
{ title: "Menu", items: [{ label: "Κρέατα", href: "#menu" }, { label: "Θαλασσινά", href: "#menu" }, { label: "Specials", href: "#menu" }] },
{ title: "Επικοινωνία", items: [{ label: "23820 32930", href: "tel:2382032930" }, { label: "Νέα Πέλλα", href: "#location" }] }
@@ -180,4 +180,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}