diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ae5934c..b443a70 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,8 +12,8 @@ import { Cinzel } from "next/font/google"; export const metadata: Metadata = { - title: 'Εβίβα Ταβέρνα — Το Κρέας σε Άλλη Διάσταση', - description: 'Premium κρεατοφαγία, εκλεκτά κρασιά και ζεστή αθηναϊκή φιλοξενία. Εκεί που το φαγητό γίνεται εμπειρία.', + title: 'Εβίβα Ταβέρνα | Premium Κρεατοφαγία & Φιλοξενία', + description: 'Η Εβίβα Ταβέρνα προσφέρει αυθεντική αθηναϊκή φιλοξενία, εκλεκτά κρέατα και επιλεγμένες ετικέτες κρασιών σε ένα μοναδικό περιβάλλον.', }; const cormorant = Cormorant_Garamond({ diff --git a/src/app/page.tsx b/src/app/page.tsx index 8afff1d..33d80ca 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,265 +1,110 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Star, MapPin, Wine, User, Calendar, Clock } from 'lucide-react'; -export default function LandingPage() { +const navItems = [ + { name: "Αρχική", id: "#hero" }, + { name: "Ιστορία", id: "#story" }, + { name: "Μενού", id: "#menu" }, + { name: "Κριτικές", id: "#reviews" }, + { name: "Κράτηση", id: "#contact" } +]; + +export default function HomePage() { return ( - - - + -
- -
+
+ +
-
- -
+
+ +
- + -
- -
+
+ +
-
- -
+
+ +
- -
+
); }