Update src/app/page.tsx
This commit is contained in:
@@ -76,7 +76,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="Gallery"
|
||||
tagAnimation="entrance-slide"
|
||||
tagAnimation="slide-up"
|
||||
ariaLabel="Gallery section"
|
||||
/>
|
||||
</div>
|
||||
@@ -102,28 +102,28 @@ export default function LandingPage() {
|
||||
description="Scan QR at your table, select items, and place your order instantly. No login required."
|
||||
products={[
|
||||
{
|
||||
id: "espresso", name: "Espresso", price: "₹80", variant: "Coffee", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flour-cookies-with-strawberry-jam-wooden-board-pieces-sesame-kozinaki-cup-coffee-black-background-with-copy-space_141793-9079.jpg?_wi=1", imageAlt: "Premium espresso shot"
|
||||
id: "espresso", name: "Espresso", price: "₹80", variant: "Coffee", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flour-cookies-with-strawberry-jam-wooden-board-pieces-sesame-kozinaki-cup-coffee-black-background-with-copy-space_141793-9079.jpg", imageAlt: "Premium espresso shot"
|
||||
},
|
||||
{
|
||||
id: "cappuccino", name: "Cappuccino", price: "₹120", variant: "Coffee", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flour-cookies-with-strawberry-jam-wooden-board-pieces-sesame-kozinaki-cup-coffee-black-background-with-copy-space_141793-9079.jpg?_wi=2", imageAlt: "Classic cappuccino"
|
||||
id: "cappuccino", name: "Cappuccino", price: "₹120", variant: "Coffee", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flour-cookies-with-strawberry-jam-wooden-board-pieces-sesame-kozinaki-cup-coffee-black-background-with-copy-space_141793-9079.jpg", imageAlt: "Classic cappuccino"
|
||||
},
|
||||
{
|
||||
id: "latte", name: "Latte", price: "₹130", variant: "Coffee", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flour-cookies-with-strawberry-jam-wooden-board-pieces-sesame-kozinaki-cup-coffee-black-background-with-copy-space_141793-9079.jpg?_wi=3", imageAlt: "Smooth latte"
|
||||
id: "latte", name: "Latte", price: "₹130", variant: "Coffee", imageSrc: "http://img.b2bpic.net/free-photo/top-view-flour-cookies-with-strawberry-jam-wooden-board-pieces-sesame-kozinaki-cup-coffee-black-background-with-copy-space_141793-9079.jpg", imageAlt: "Smooth latte"
|
||||
},
|
||||
{
|
||||
id: "green-tea", name: "Green Tea", price: "₹60", variant: "Tea", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-textured-teapot-blurred-background-closeup_169016-25246.jpg?_wi=1", imageAlt: "Fresh green tea"
|
||||
id: "green-tea", name: "Green Tea", price: "₹60", variant: "Tea", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-textured-teapot-blurred-background-closeup_169016-25246.jpg", imageAlt: "Fresh green tea"
|
||||
},
|
||||
{
|
||||
id: "herbal-tea", name: "Herbal Tea", price: "₹70", variant: "Tea", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-textured-teapot-blurred-background-closeup_169016-25246.jpg?_wi=2", imageAlt: "Relaxing herbal tea"
|
||||
id: "herbal-tea", name: "Herbal Tea", price: "₹70", variant: "Tea", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-textured-teapot-blurred-background-closeup_169016-25246.jpg", imageAlt: "Relaxing herbal tea"
|
||||
},
|
||||
{
|
||||
id: "iced-tea", name: "Iced Tea", price: "₹80", variant: "Tea", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-textured-teapot-blurred-background-closeup_169016-25246.jpg?_wi=3", imageAlt: "Refreshing iced tea"
|
||||
id: "iced-tea", name: "Iced Tea", price: "₹80", variant: "Tea", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-textured-teapot-blurred-background-closeup_169016-25246.jpg", imageAlt: "Refreshing iced tea"
|
||||
},
|
||||
{
|
||||
id: "sandwich", name: "Gourmet Sandwich", price: "₹250", variant: "Food", imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-cherry-jam-from-crystal-pot-into-saucer-tea-setup_140725-528.jpg?_wi=1", imageAlt: "Artisan sandwich"
|
||||
id: "sandwich", name: "Gourmet Sandwich", price: "₹250", variant: "Food", imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-cherry-jam-from-crystal-pot-into-saucer-tea-setup_140725-528.jpg", imageAlt: "Artisan sandwich"
|
||||
},
|
||||
{
|
||||
id: "salad", name: "Fresh Salad", price: "₹200", variant: "Food", imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-cherry-jam-from-crystal-pot-into-saucer-tea-setup_140725-528.jpg?_wi=2", imageAlt: "Seasonal fresh salad"
|
||||
id: "salad", name: "Fresh Salad", price: "₹200", variant: "Food", imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-cherry-jam-from-crystal-pot-into-saucer-tea-setup_140725-528.jpg", imageAlt: "Seasonal fresh salad"
|
||||
}
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
@@ -131,7 +131,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="Order Now"
|
||||
tagAnimation="entrance-slide"
|
||||
tagAnimation="slide-up"
|
||||
ariaLabel="Menu ordering section"
|
||||
/>
|
||||
</div>
|
||||
@@ -141,7 +141,7 @@ export default function LandingPage() {
|
||||
title="What Our Guests Say"
|
||||
description="Loved by locals and visitors alike. Experience the magic of Dicto Cafe through their words."
|
||||
tag="3.3★ Rating"
|
||||
tagAnimation="entrance-slide"
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Priya Sharma", date: "2 weeks ago", title: "Perfect for dates", quote: "The aesthetic white architecture and green surroundings create such a romantic atmosphere. Ordering via QR was so convenient!", tag: "Couples", avatarSrc: "http://img.b2bpic.net/free-photo/blonde-businesswoman-portrait-with-copy-space_1194-633470.jpg", avatarAlt: "Priya Sharma profile"
|
||||
@@ -167,7 +167,7 @@ export default function LandingPage() {
|
||||
tag="Visit Us"
|
||||
title="Dicto Cafe Location"
|
||||
description="Hunter Rd, near Temple Trees Villas, Sri Sai Nagar Colony, Shyampet, Warangal, Hanamkonda, Telangana 506001"
|
||||
tagAnimation="entrance-slide"
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/tourist-pointed-their-finger-map_1150-24541.jpg"
|
||||
|
||||
Reference in New Issue
Block a user