Update src/app/page.tsx

This commit is contained in:
2026-06-11 13:47:17 +00:00
parent 7c9e39137b
commit e4f7377e7f

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 FaqBase from '@/components/sections/faq/FaqBase';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -150,7 +150,7 @@ export default function LandingPage() {
</div>
<div id="faqs" data-section="faqs">
<FaqBase
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={true}
faqs={[
@@ -166,36 +166,79 @@ export default function LandingPage() {
id: "faq-5", title: "Is outdoor seating available, and is it heated in winter?", content: "We offer picturesque outdoor seating by the river, and our enclosed orangerie is heated during colder months, allowing you to enjoy the views comfortably year-round."},
]}
title="Frequently Asked Questions"
description="Find quick answers to common inquiries about Velkopřevorský Mlýn, from reservations to dining options."
description="Find quick answers to common inquiries about Velkopřevorský Mlýn, from reservations to dining options. If you have more questions, don't hesitate to reach out!"
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "radial-gradient"}}
text="Visit Us for an Unforgettable Culinary Journey. We look forward to welcoming you to Velkopřevorský Mlýn at Hroznová 489, 118 00 Malá Strana, Prague."
imageSrc="http://img.b2bpic.net/free-photo/top-view-different-spices-wooden-background_23-2148766164.jpg"
imageAlt="Spices and herbs on a wooden table, representing culinary questions"
mediaPosition="right"
buttons={[
{
text: "Call Us: 777 153 418", href: "tel:+420777153418"},
{
text: "Get Directions", href: "https://maps.app.goo.gl/3CP5G5"},
text: "Contact Us", href: "#contact"}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Get in Touch"
title="Ready for an Authentic Czech Experience?"
description="Visit us at Hroznová 489, 118 00 Malá Strana, Prague, or reach out to make a reservation. We're here to make your visit unforgettable."
buttons={[
{
text: "Call Us: +420 777 153 418", href: "tel:+420777153418"},
{
text: "Get Directions", href: "https://maps.app.goo.gl/3CP5G5"},
{
text: "Send an Email", href: "mailto:info@velkoprevorskymlyn.cz"}
]}
background={{
variant: "radial-gradient"}}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBaseReveal
logoText="Velkopřevorský Mlýn"
leftLink={{
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service", href: "#"}}
columns={[
{
title: "Explore", items: [
{
label: "Home", href: "#hero"
},
{
label: "Menu", href: "#menu"
},
{
label: "About", href: "#about"
}
]
},
{
title: "Support", items: [
{
label: "FAQs", href: "#faqs"
},
{
label: "Contact", href: "#contact"
}
]
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"
},
{
label: "Terms of Service", href: "#"
}
]
}
]}
copyrightText="© 2024 Velkopřevorský Mlýn. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}