Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 32d84ecf3c | |||
| e8af6fa418 | |||
| 9c0f98b8cd | |||
| 12fa55345c | |||
| 2f82311f85 | |||
| 6c9994ce7e | |||
| bc96af9abf | |||
| b80bfa59b2 |
50
src/app/ownership/page.tsx
Normal file
50
src/app/ownership/page.tsx
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
|
export default function OwnershipPage() {
|
||||||
|
const [email, setEmail] = useState("");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-shift"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="small"
|
||||||
|
sizing="largeSmallSizeLargeTitles"
|
||||||
|
background="noise"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="shadow"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Αρχική", id: "/" },
|
||||||
|
{ name: "Ownership", id: "/ownership" },
|
||||||
|
]}
|
||||||
|
brandName="Απ αλλού"
|
||||||
|
button={{ text: "Contact", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="transfer" data-section="transfer" className="pt-32 pb-20">
|
||||||
|
<ContactCenter
|
||||||
|
tag="Owner Access"
|
||||||
|
title="Transfer Ownership"
|
||||||
|
description="Securely transfer website ownership by entering the new owner's email address below."
|
||||||
|
buttonText="Transfer"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
onSubmit={(email) => {
|
||||||
|
console.log("Ownership transfer requested for:", email);
|
||||||
|
alert("Transfer request sent securely.");
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -28,44 +28,34 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Αρχική", id: "hero" },
|
||||||
name: "Αρχική", id: "hero"},
|
{ name: "Η Εμπειρία", id: "about" },
|
||||||
{
|
{ name: "Highlight", id: "features" },
|
||||||
name: "Η Εμπειρία", id: "about"},
|
{ name: "Κράτηση", id: "contact" },
|
||||||
{
|
{ name: "Ownership", id: "/ownership" },
|
||||||
name: "Highlight", id: "features"},
|
|
||||||
{
|
|
||||||
name: "Κράτηση", id: "contact"},
|
|
||||||
]}
|
]}
|
||||||
brandName="Απ αλλού"
|
brandName="Απ αλλού"
|
||||||
button={{
|
button={{
|
||||||
text: "Κράτηση Τραπεζιού", href: "#contact"}}
|
text: "Κράτηση Τραπεζιού", href: "#contact"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardCarousel
|
<HeroBillboardCarousel
|
||||||
background={{
|
background={{ variant: "sparkles-gradient" }}
|
||||||
variant: "sparkles-gradient"}}
|
|
||||||
title="Σαν να είσαι… αλλού"
|
title="Σαν να είσαι… αλλού"
|
||||||
description="Ζεστή ατμόσφαιρα, εκλεκτές γεύσεις και μουσική που σε ταξιδεύει. Κάθε λεπτομέρεια σχεδιάζεται για να νιώσεις κάτι διαφορετικό."
|
description="Ζεστή ατμόσφαιρα, εκλεκτές γεύσεις και μουσική που σε ταξιδεύει. Κάθε λεπτομέρεια σχεδιάζεται για να νιώσεις κάτι διαφορετικό."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Κράτηση Τραπεζιού", href: "#contact" },
|
||||||
text: "Κράτηση Τραπεζιού", href: "#contact"},
|
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/outdoor-table-setting-with-ocean-view_23-2151991781.jpg", imageAlt: "Atmospheric greek restaurant interior" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/outdoor-table-setting-with-ocean-view_23-2151991781.jpg", imageAlt: "Atmospheric greek restaurant interior"},
|
{ imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cheering-with-wine-glasses-restaurant_23-2150520071.jpg", imageAlt: "Candlelit romantic dinner table" },
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/man-playing-guitar-indoors-with-copy-space_23-2148628989.jpg", imageAlt: "Live music at dining venue" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cheering-with-wine-glasses-restaurant_23-2150520071.jpg", imageAlt: "Candlelit romantic dinner table"},
|
{ imageSrc: "http://img.b2bpic.net/free-photo/dinner-restaurant-closeup-salad-with-beetroot-cottage-cheese-people-eating-background_501050-81.jpg", imageAlt: "Gourmet plating presentation" },
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157791.jpg", imageAlt: "Luxury restaurant detail" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-playing-guitar-indoors-with-copy-space_23-2148628989.jpg", imageAlt: "Live music at dining venue"},
|
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-couple-love-having-great-time-together-their-dating-attractive-couple-enjoying-each-other-young-woman-feeding-her-man-restaurant_613910-18761.jpg", imageAlt: "Evening fine dining setting" },
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dinner-restaurant-closeup-salad-with-beetroot-cottage-cheese-people-eating-background_501050-81.jpg", imageAlt: "Gourmet plating presentation"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157791.jpg", imageAlt: "Luxury restaurant detail"},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-couple-love-having-great-time-together-their-dating-attractive-couple-enjoying-each-other-young-woman-feeding-her-man-restaurant_613910-18761.jpg", imageAlt: "Evening fine dining setting"},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -76,12 +66,9 @@ export default function LandingPage() {
|
|||||||
title="Μια εμπειρία για τις αισθήσεις"
|
title="Μια εμπειρία για τις αισθήσεις"
|
||||||
description="Δεν προσφέρουμε απλώς φαγητό, αλλά μια διέξοδο. Ένας χώρος όπου η ζεστασιά συναντά την κομψότητα, δημιουργώντας αναμνήσεις που διαρκούν."
|
description="Δεν προσφέρουμε απλώς φαγητό, αλλά μια διέξοδο. Ένας χώρος όπου η ζεστασιά συναντά την κομψότητα, δημιουργώντας αναμνήσεις που διαρκούν."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{ value: "15+", title: "Χρόνια εμπειρίας" },
|
||||||
value: "15+", title: "Χρόνια εμπειρίας"},
|
{ value: "5000+", title: "Χαρούμενοι καλεσμένοι" },
|
||||||
{
|
{ value: "100%", title: "Ελληνική ταυτότητα" },
|
||||||
value: "5000+", title: "Χαρούμενοι καλεσμένοι"},
|
|
||||||
{
|
|
||||||
value: "100%", title: "Ελληνική ταυτότητα"},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-having-salad-meal-restaurant_53876-42685.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/woman-having-salad-meal-restaurant_53876-42685.jpg"
|
||||||
imageAlt="Chef preparing authentic greek dish"
|
imageAlt="Chef preparing authentic greek dish"
|
||||||
@@ -97,16 +84,10 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Live Μουσικές Στιγμές", description: "Μελωδίες που συνοδεύουν το δείπνο σας και μετατρέπουν κάθε βράδυ σε ένα ταξίδι στα συναισθήματα.", phoneOne: {
|
title: "Live Μουσικές Στιγμές", description: "Μελωδίες που συνοδεύουν το δείπνο σας και μετατρέπουν κάθε βράδυ σε ένα ταξίδι στα συναισθήματα.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-girl-recording-music-their-home-studio-with-guitar_23-2149666509.jpg?_wi=1", imageAlt: "Live music performance" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-girl-recording-music-their-home-studio-with-guitar_23-2149666509.jpg?_wi=2", imageAlt: "Live music performance detail" }
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-girl-recording-music-their-home-studio-with-guitar_23-2149666509.jpg?_wi=1", imageAlt: "Live music performance"},
|
|
||||||
phoneTwo: {
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-girl-recording-music-their-home-studio-with-guitar_23-2149666509.jpg?_wi=2", imageAlt: "Live music performance detail"}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Εκλεκτές Γεύσεις & Οίνοι", description: "Επιλεγμένες ετικέτες που ταιριάζουν απόλυτα με τις αυθεντικές μας συνταγές.", phoneOne: {
|
title: "Εκλεκτές Γεύσεις & Οίνοι", description: "Επιλεγμένες ετικέτες που ταιριάζουν απόλυτα με τις αυθεντικές μας συνταγές.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-dinner_23-2149882896.jpg?_wi=1", imageAlt: "Wine selection" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-dinner_23-2149882896.jpg?_wi=2", imageAlt: "Waiting service" }
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-dinner_23-2149882896.jpg?_wi=1", imageAlt: "Wine selection"},
|
|
||||||
phoneTwo: {
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-having-dinner_23-2149882896.jpg?_wi=2", imageAlt: "Waiting service"}
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
showStepNumbers={false}
|
showStepNumbers={false}
|
||||||
@@ -121,16 +102,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Ελένη Παπαδοπούλου", role: "Corporate Client", testimonial: "Η ατμόσφαιρα είναι πραγματικά κάτι το ξεχωριστό. Δεν είχα νιώσει τόσο 'αλλού' ποτέ.", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081852.jpg" },
|
||||||
id: "1", name: "Ελένη Παπαδοπούλου", role: "Corporate Client", testimonial: "Η ατμόσφαιρα είναι πραγματικά κάτι το ξεχωριστό. Δεν είχα νιώσει τόσο 'αλλού' ποτέ.", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081852.jpg"},
|
{ id: "2", name: "Νίκος Γεωργίου", role: "Food Critic", testimonial: "Ένα καταφύγιο από την καθημερινότητα. Εξαιρετική μουσική και φιλοξενία.", imageSrc: "http://img.b2bpic.net/free-photo/couple-restaurant_23-2148006703.jpg" },
|
||||||
{
|
{ id: "3", name: "Μαρία Σταύρου", role: "Regular Guest", testimonial: "Κάθε φορά που έρχομαι, ανακαλύπτω μια νέα πινελιά ομορφιάς στο χώρο.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-luxurious-restaurant_23-2150517450.jpg" },
|
||||||
id: "2", name: "Νίκος Γεωργίου", role: "Food Critic", testimonial: "Ένα καταφύγιο από την καθημερινότητα. Εξαιρετική μουσική και φιλοξενία.", imageSrc: "http://img.b2bpic.net/free-photo/couple-restaurant_23-2148006703.jpg"},
|
{ id: "4", name: "Γιώργος Δημήτρη", role: "Special Occasion", testimonial: "Το ιδανικό μέρος για να γιορτάσεις. Ρομαντικό και αυθεντικό.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-man-luxurious-restaurant_23-2150517397.jpg" },
|
||||||
{
|
{ id: "5", name: "Σοφία Κ.", role: "Happy Guest", testimonial: "Η μουσική είναι το κλειδί της επιτυχίας τους. Τέλεια εμπειρία!", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520113.jpg" },
|
||||||
id: "3", name: "Μαρία Σταύρου", role: "Regular Guest", testimonial: "Κάθε φορά που έρχομαι, ανακαλύπτω μια νέα πινελιά ομορφιάς στο χώρο.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-luxurious-restaurant_23-2150517450.jpg"},
|
|
||||||
{
|
|
||||||
id: "4", name: "Γιώργος Δημήτρη", role: "Special Occasion", testimonial: "Το ιδανικό μέρος για να γιορτάσεις. Ρομαντικό και αυθεντικό.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-man-luxurious-restaurant_23-2150517397.jpg"},
|
|
||||||
{
|
|
||||||
id: "5", name: "Σοφία Κ.", role: "Happy Guest", testimonial: "Η μουσική είναι το κλειδί της επιτυχίας τους. Τέλεια εμπειρία!", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520113.jpg"},
|
|
||||||
]}
|
]}
|
||||||
title="Τι λένε οι καλεσμένοι μας"
|
title="Τι λένε οι καλεσμένοι μας"
|
||||||
description="Η ζεστασιά και η μουσική ατμόσφαιρα καθιστούν κάθε επίσκεψη αξέχαστη."
|
description="Η ζεστασιά και η μουσική ατμόσφαιρα καθιστούν κάθε επίσκεψη αξέχαστη."
|
||||||
@@ -140,8 +116,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain"}}
|
|
||||||
tag="Κράτηση"
|
tag="Κράτηση"
|
||||||
title="Κλείστε τη θέση σας"
|
title="Κλείστε τη θέση σας"
|
||||||
description="Ετοιμαστείτε για μια βραδιά που θα σας ταξιδέψει. Επικοινωνήστε μαζί μας για κρατήσεις."
|
description="Ετοιμαστείτε για μια βραδιά που θα σας ταξιδέψει. Επικοινωνήστε μαζί μας για κρατήσεις."
|
||||||
@@ -156,22 +131,8 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/urban-mysterious-lights-film-aesthetic_23-2149098540.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/urban-mysterious-lights-film-aesthetic_23-2149098540.jpg"
|
||||||
logoText="Απ αλλού"
|
logoText="Απ αλλού"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Μενού", items: [{ label: "Κρατήσεις", href: "#contact" }, { label: "Η Εμπειρία", href: "#about" }] },
|
||||||
title: "Μενού", items: [
|
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
|
||||||
{
|
|
||||||
label: "Κρατήσεις", href: "#contact"},
|
|
||||||
{
|
|
||||||
label: "Η Εμπειρία", href: "#about"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Social", items: [
|
|
||||||
{
|
|
||||||
label: "Instagram", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Facebook", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 Απ αλλού | Όλα τα δικαιώματα διατηρούνται."
|
copyrightText="© 2025 Απ αλλού | Όλα τα δικαιώματα διατηρούνται."
|
||||||
/>
|
/>
|
||||||
@@ -179,4 +140,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user