From 6fc3ceee2fcce92c7f2c8948e69a187e12d6d62f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 23:54:34 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ad5b613..4cafb18 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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() {
-
-