Update src/app/entertainment/page.tsx

This commit is contained in:
2026-05-10 12:52:31 +00:00
parent 72b9a28b64
commit 499fba4eac

View File

@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Entertainment",
id: "/entertainment",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Contacts",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Entertainment", id: "/entertainment" },
{ name: "Menu", id: "/menu" },
{ name: "Contacts", id: "/contact" },
]}
brandName="Wonderland"
/>
@@ -53,36 +41,16 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "f1",
title: "Trampoline Arena",
description: "Huge jump zones for active kids.",
tag: "Active",
imageSrc: "http://img.b2bpic.net/free-photo/company-is-young-woman-who-has-fun-with-soft-blocks-children-s-playground-trampoline-center_146671-15269.jpg",
},
id: "f1", title: "Батутна арена", description: "Величезні зони для активних стрибків.", tag: "Активність", imageSrc: "http://img.b2bpic.net/free-photo/company-is-young-woman-who-has-fun-with-soft-blocks-children-s-playground-trampoline-center_146671-15269.jpg"},
{
id: "f2",
title: "Ninja Park",
description: "Obstacle courses for mini-warriors.",
tag: "Challenge",
imageSrc: "http://img.b2bpic.net/free-photo/young-female-dancer-dancing-studio_23-2148169434.jpg",
},
id: "f2", title: "Ніндзя-парк", description: "Смуга перешкод для маленьких героїв.", tag: "Виклик", imageSrc: "http://img.b2bpic.net/free-photo/young-female-dancer-dancing-studio_23-2148169434.jpg"},
{
id: "f3",
title: "Soft Play Area",
description: "Safe, fun zone for our smallest guests.",
tag: "Kids",
imageSrc: "http://img.b2bpic.net/free-photo/activity-joy-fun-happiness-recreation-concept_343059-3644.jpg",
},
id: "f3", title: "Зона Soft Play", description: "Безпечна зона для наших найменших відвідувачів.", tag: "Діти", imageSrc: "http://img.b2bpic.net/free-photo/activity-joy-fun-happiness-recreation-concept_343059-3644.jpg"},
{
id: "f4",
title: "Game Machines",
description: "Classic and new interactive arcade games.",
tag: "Gaming",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-looking-toys_23-2148287921.jpg",
},
id: "f4", title: "Ігрові автомати", description: "Класичні та нові інтерактивні аркадні ігри.", tag: "Ігри", imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-looking-toys_23-2148287921.jpg"},
]}
title="Entertainment Zones"
description="Discover all the fun waiting for your children in Wonderland."
title="Розважальні зони"
description="Відкрийте для себе всі розваги у Wonderland."
/>
</div>
@@ -90,20 +58,14 @@ export default function LandingPage() {
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={false}
title="Fun FAQs"
description="Common questions about visiting Wonderland."
title="Часті питання"
description="Відповіді на ваші запитання про Wonderland."
imageSrc="http://img.b2bpic.net/free-photo/happy-kid-with-opening-arms_23-2148361463.jpg"
faqs={[
{
id: "q1",
title: "Is the park safe?",
content: "Absolutely! We prioritize safety with soft zones and trained staff.",
},
id: "q1", title: "Чи безпечно у парку?", content: "Абсолютно! Ми забезпечуємо безпеку за допомогою м'яких зон та кваліфікованого персоналу."},
{
id: "q2",
title: "Do I need to book in advance?",
content: "Booking is recommended for birthdays, but general play is walk-in friendly.",
},
id: "q2", title: "Чи потрібно бронювати заздалегідь?", content: "Бронювання рекомендоване для святкування днів народження, для звичайного відвідування — жива черга."},
]}
faqsAnimation="slide-up"
/>
@@ -113,33 +75,25 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Location",
items: [
title: "Локація", items: [
{
label: "Shevchenka St, 5a, Stryi",
href: "#",
},
label: "вул. Шевченка 5а, Стрий", href: "#"},
],
},
{
title: "Support",
items: [
title: "Підтримка", items: [
{
label: "068 084 8484",
href: "tel:0680848484",
},
label: "068 084 8484", href: "tel:0680848484"},
{
label: "Instagram",
href: "https://instagram.com",
},
label: "Instagram", href: "https://instagram.com"},
],
},
]}
bottomLeftText="© 2024 Wonderland Stryi"
bottomRightText="Working hours: 10:00 - 23:00"
bottomRightText="Працюємо: 10:00 - 23:00"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}