Update src/app/page.tsx

This commit is contained in:
2026-05-20 09:31:01 +00:00
parent be4d091530
commit 6d8f8cd599

View File

@@ -9,7 +9,6 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { ShoppingBag, Star, Users } from "lucide-react";
export default function LandingPage() {
return (
@@ -73,6 +72,8 @@ export default function LandingPage() {
description="A curated selection of our signature preparations, presented in their finest form."
gridVariant="one-large-right-three-stacked-left"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Signature Beef", price: "Rs. 450", imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-with-cheddar-lettuces-onion_140725-5718.jpg" },
{ id: "p2", name: "Crispy Chicken", price: "Rs. 350", imageSrc: "http://img.b2bpic.net/free-photo/deliciously-cooked-seasoned-chicken-wings-with-garlic-table-lights_181624-27096.jpg" },
@@ -100,8 +101,12 @@ export default function LandingPage() {
<ContactSplitForm
title="Join Our Inner Circle"
description="Sign up for our newsletter to receive exclusive menu previews and VIP member-only offers."
inputs={[{ name: "email", type: "email", placeholder: "Enter your professional email" }]}
inputs={[
{ name: "email", type: "email", placeholder: "Enter your professional email", required: true },
{ name: "name", type: "text", placeholder: "Enter your name", required: true }
]}
buttonText="Subscribe"
useInvertedBackground={false}
/>
</div>