2 Commits

Author SHA1 Message Date
109f0ac718 Update src/app/page.tsx 2026-05-23 10:21:13 +00:00
548b135d36 Merge version_1 into main
Merge version_1 into main
2026-05-23 10:18:35 +00:00

View File

@@ -182,19 +182,12 @@ export default function LandingPage() {
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{
id: "t1", name: "Evelyn Reed", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-lemons-limes_155996-4.jpg"},
{
id: "t2", name: "Arthur Vance", imageSrc: "http://img.b2bpic.net/free-photo/woman-religious-pilgrimage-church_23-2150582369.jpg"},
{
id: "t3", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/portrait-person-football-game_23-2149015523.jpg"},
{
id: "t4", name: "Thomas Blake", imageSrc: "http://img.b2bpic.net/free-photo/joyful-lady-jacket-white-pants-smiling-outside-lovely-woman-with-bright-lips-eyeglasses-outdoors_197531-19337.jpg"},
{
id: "t5", name: "Grace Kim", imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-shopping-buying-consumer-goods_23-2151669840.jpg"},
{ id: "t1", name: "Evelyn Reed, Collector", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-lemons-limes_155996-4.jpg" },
{ id: "t2", name: "Arthur Vance, Artisan Fan", imageSrc: "http://img.b2bpic.net/free-photo/woman-religious-pilgrimage-church_23-2150582369.jpg" },
{ id: "t3", name: "Sarah Miller, Interior Designer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-person-football-game_23-2149015523.jpg" }
]}
cardTitle="Words from Our Collectors"
cardTag="Testimonials"
cardTitle="What Our Patrons Say"
cardTag="Reviews"
cardAnimation="blur-reveal"
/>
</div>
@@ -203,14 +196,12 @@ export default function LandingPage() {
<FaqSplitText
useInvertedBackground={true}
faqs={[
{
id: "q1", title: "Do you ship globally?", content: "Yes, we ship our traditional crafts worldwide."},
{
id: "q2", title: "How is it made?", content: "Using authentic techniques developed in 1960."},
{
id: "q3", title: "Can I request custom work?", content: "Please contact us for custom artisan inquiries."},
{ id: "q1", title: "Do you offer dinner reservations?", content: "Yes, you can reserve a table via our contact section." },
{ id: "q2", title: "What are your opening hours?", content: "We are open Tuesday through Sunday, 5:00 PM to 10:00 PM." },
{ id: "q3", title: "Do you cater private events?", content: "Absolutely, our restaurant hosts private gatherings for up to 50 guests." },
{ id: "q4", title: "Is there a dress code?", content: "We recommend smart-casual attire for a delightful dining experience." }
]}
sideTitle="Common Questions"
sideTitle="Dining Queries"
faqsAnimation="blur-reveal"
/>
</div>
@@ -220,9 +211,9 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{
variant: "radial-gradient"}}
tag="Stay Connected"
title="Join Our Heritage Circle"
description="Sign up for updates on new artisan collections and heritage stories."
tag="Reservations"
title="Book Your Experience"
description="Contact us at (555) 196-0196 or email reservations@lantika1960.com to secure your table today."
/>
</div>
@@ -231,27 +222,24 @@ export default function LandingPage() {
logoText="Lantika 1960"
columns={[
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Heritage", href: "#"},
title: "Restaurant", items: [
{ label: "Our Heritage", href: "#about" },
{ label: "The Menu", href: "#products" },
{ label: "Reservations", href: "#contact" }
],
},
{
title: "Products", items: [
{
label: "Catalog", href: "#products"},
{
label: "Shop", href: "#"},
title: "Info", items: [
{ label: "123 Culinary St, Craft City", href: "#" },
{ label: "info@lantika1960.com", href: "mailto:info@lantika1960.com" },
{ label: "(555) 196-0196", href: "tel:+15551960196" }
],
},
{
title: "Support", items: [
{
label: "Contact", href: "#contact"},
{
label: "FAQ", href: "#faq"},
{ label: "FAQ", href: "#faq" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
],
},
]}
@@ -260,4 +248,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}