diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index eed1775..d64d543 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -64,7 +64,7 @@ export default function ContactPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmall" - background="floatingGradient" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="solid" @@ -78,9 +78,7 @@ export default function ContactPage() { id: item.id, }))} button={{ - text: "Reserve Table", - href: "/reservation", - }} + text: "Reserve Table", href: "/reservation"}} animateOnLoad={true} /> @@ -268,17 +266,13 @@ export default function ContactPage() { diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index d72b26a..6fc434f 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -67,7 +67,7 @@ export default function MenuPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmall" - background="floatingGradient" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="solid" @@ -81,9 +81,7 @@ export default function MenuPage() { id: item.id, }))} button={{ - text: "Reserve Table", - href: "/reservation", - }} + text: "Reserve Table", href: "/reservation"}} animateOnLoad={true} /> @@ -100,25 +98,13 @@ export default function MenuPage() { animationType="slide-up" features={[ { - id: "1", - title: "Blue Heaven Mocktail", - author: "Signature Drink", - description: - "A refreshing blend of blueberry, citrus, and premium herbs. Perfectly chilled and garnished with fresh mint and blueberries.", - tags: ["Signature", "Premium"], - imageSrc: "http://img.b2bpic.net/free-photo/delicious-blue-cocktail-with-ice_23-2149407465.jpg?_wi=2", - imageAlt: "Blue Heaven Mocktail", - }, + id: "1", title: "Blue Heaven Mocktail", author: "Signature Drink", description: + "A refreshing blend of blueberry, citrus, and premium herbs. Perfectly chilled and garnished with fresh mint and blueberries.", tags: ["Signature", "Premium"], + imageSrc: "http://img.b2bpic.net/free-photo/delicious-blue-cocktail-with-ice_23-2149407465.jpg", imageAlt: "Blue Heaven Mocktail"}, { - id: "2", - title: "Blueberry Mojito", - author: "Specialty Drink", - description: - "Fresh blueberries muddled with mint, lime, and sparkling water. A vibrant, refreshing choice for a lighter option.", - tags: ["Fresh", "Refreshing"], - imageSrc: "http://img.b2bpic.net/free-photo/delicious-blue-cocktail-with-ice_23-2149407465.jpg?_wi=3", - imageAlt: "Blueberry Mojito", - }, + id: "2", title: "Blueberry Mojito", author: "Specialty Drink", description: + "Fresh blueberries muddled with mint, lime, and sparkling water. A vibrant, refreshing choice for a lighter option.", tags: ["Fresh", "Refreshing"], + imageSrc: "http://img.b2bpic.net/free-photo/delicious-blue-cocktail-with-ice_23-2149407465.jpg", imageAlt: "Blueberry Mojito"}, ]} ariaLabel="Beverages menu section" /> @@ -137,35 +123,14 @@ export default function MenuPage() { animationType="slide-up" products={[ { - id: "1", - brand: "Thyme & Whisk", - name: "Korean Garlic Bun", - price: "₹280", - rating: 5, - reviewCount: "340", - imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-slices-crispy-dough_140725-1759.jpg?_wi=3", - imageAlt: "Korean Garlic Bun", - }, + id: "1", brand: "Thyme & Whisk", name: "Korean Garlic Bun", price: "₹280", rating: 5, + reviewCount: "340", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-slices-crispy-dough_140725-1759.jpg", imageAlt: "Korean Garlic Bun"}, { - id: "2", - brand: "Thyme & Whisk", - name: "Tiramisu Dessert", - price: "₹320", - rating: 5, - reviewCount: "520", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-chocolate-tiramisu-with-cup-tea-candle-white-plate-serving-napkins_176474-3042.jpg?_wi=2", - imageAlt: "Premium Tiramisu Dessert", - }, + id: "2", brand: "Thyme & Whisk", name: "Tiramisu Dessert", price: "₹320", rating: 5, + reviewCount: "520", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chocolate-tiramisu-with-cup-tea-candle-white-plate-serving-napkins_176474-3042.jpg", imageAlt: "Premium Tiramisu Dessert"}, { - id: "3", - brand: "Thyme & Whisk", - name: "Vegetable Sizzler", - price: "₹450", - rating: 5, - reviewCount: "480", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-broccoli-cauliflower-salad-black-oval-plate-fork-knife-green-hot-peppers-dark-background_140725-138853.jpg?_wi=2", - imageAlt: "Premium Vegetable Sizzler", - }, + id: "3", brand: "Thyme & Whisk", name: "Vegetable Sizzler", price: "₹450", rating: 5, + reviewCount: "480", imageSrc: "http://img.b2bpic.net/free-photo/front-view-broccoli-cauliflower-salad-black-oval-plate-fork-knife-green-hot-peppers-dark-background_140725-138853.jpg", imageAlt: "Premium Vegetable Sizzler"}, ]} ariaLabel="Signature menu items section" /> @@ -175,17 +140,13 @@ export default function MenuPage() { diff --git a/src/app/page.tsx b/src/app/page.tsx index 1aeca0b..1240b8f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -71,7 +71,7 @@ export default function HomePage() { borderRadius="pill" contentWidth="compact" sizing="largeSmall" - background="floatingGradient" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="solid" @@ -85,9 +85,7 @@ export default function HomePage() { id: item.id, }))} button={{ - text: "Reserve Table", - href: "/reservation", - }} + text: "Reserve Table", href: "/reservation"}} animateOnLoad={true} /> @@ -96,7 +94,7 @@ export default function HomePage() { @@ -197,25 +166,13 @@ export default function HomePage() { animationType="slide-up" features={[ { - id: "1", - title: "Cozy Fine Dining Ambiance", - author: "Premium Experience", - description: - "Elegant interiors with warm lighting, comfortable seating, and an intimate atmosphere perfect for couples, families, and celebrations.", - tags: ["Ambiance", "Luxury"], - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-holding-cocktail_23-2150124818.jpg?_wi=1", - imageAlt: "Elegant dining ambiance", - }, + id: "1", title: "Cozy Fine Dining Ambiance", author: "Premium Experience", description: + "Elegant interiors with warm lighting, comfortable seating, and an intimate atmosphere perfect for couples, families, and celebrations.", tags: ["Ambiance", "Luxury"], + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-holding-cocktail_23-2150124818.jpg", imageAlt: "Elegant dining ambiance"}, { - id: "2", - title: "Handcrafted Mocktails & Beverages", - author: "Specialty Drinks", - description: - "Signature beverages including Blue Heaven, Blueberry Mojito, and Virgin Pinacolada. Creative non-alcoholic options designed by our expert mixologists.", - tags: ["Beverages", "Premium"], - imageSrc: "http://img.b2bpic.net/free-photo/delicious-blue-cocktail-with-ice_23-2149407465.jpg?_wi=1", - imageAlt: "Artisan mocktails", - }, + id: "2", title: "Handcrafted Mocktails & Beverages", author: "Specialty Drinks", description: + "Signature beverages including Blue Heaven, Blueberry Mojito, and Virgin Pinacolada. Creative non-alcoholic options designed by our expert mixologists.", tags: ["Beverages", "Premium"], + imageSrc: "http://img.b2bpic.net/free-photo/delicious-blue-cocktail-with-ice_23-2149407465.jpg", imageAlt: "Artisan mocktails"}, ]} ariaLabel="Restaurant highlights section" /> @@ -234,65 +191,29 @@ export default function HomePage() { showRating={true} testimonials={[ { - id: "1", - name: "Priya Sharma", - handle: "@priya_nashik", - testimonial: - "Absolutely loved the ambiance and the food quality! The Korean Garlic Bun was divine. Perfect spot for anniversary celebrations.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-woman-looking-up-copy-space_1262-3088.jpg?_wi=1", - imageAlt: "Priya Sharma", - }, + id: "1", name: "Priya Sharma", handle: "@priya_nashik", testimonial: + "Absolutely loved the ambiance and the food quality! The Korean Garlic Bun was divine. Perfect spot for anniversary celebrations.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-woman-looking-up-copy-space_1262-3088.jpg", imageAlt: "Priya Sharma"}, { - id: "2", - name: "Rohit Desai", - handle: "@rohit_foodie", - testimonial: - "Best vegetarian fine dining experience in Nashik. The service is impeccable and the mocktails are creative and refreshing.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-88087.jpg?_wi=1", - imageAlt: "Rohit Desai", - }, + id: "2", name: "Rohit Desai", handle: "@rohit_foodie", testimonial: + "Best vegetarian fine dining experience in Nashik. The service is impeccable and the mocktails are creative and refreshing.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-88087.jpg", imageAlt: "Rohit Desai"}, { - id: "3", - name: "Aisha Khan", - handle: "@aisha_dines", - testimonial: - "Brought my family and everyone loved it! The Tiramisu is a must-try. Highly recommend for special occasions.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/confident-asian-leader-his-team-specialists_1262-4868.jpg?_wi=1", - imageAlt: "Aisha Khan", - }, + id: "3", name: "Aisha Khan", handle: "@aisha_dines", testimonial: + "Brought my family and everyone loved it! The Tiramisu is a must-try. Highly recommend for special occasions.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/confident-asian-leader-his-team-specialists_1262-4868.jpg", imageAlt: "Aisha Khan"}, { - id: "4", - name: "Nikhil Patel", - handle: "@nikhil_chef", - testimonial: - "Outstanding plating and flavor combinations. This restaurant truly celebrates vegetarian cuisine. A gem in Nashik.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-girl-taking-selfie-cafe_171337-9756.jpg?_wi=1", - imageAlt: "Nikhil Patel", - }, + id: "4", name: "Nikhil Patel", handle: "@nikhil_chef", testimonial: + "Outstanding plating and flavor combinations. This restaurant truly celebrates vegetarian cuisine. A gem in Nashik.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-girl-taking-selfie-cafe_171337-9756.jpg", imageAlt: "Nikhil Patel"}, { - id: "5", - name: "Divya Joshi", - handle: "@divya_foodblog", - testimonial: - "The attention to detail is remarkable. From presentation to taste, everything was perfect. Worth every visit!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-with-charming-smile-posing-street-with-interesting-architecture-background_613910-14028.jpg?_wi=1", - imageAlt: "Divya Joshi", - }, + id: "5", name: "Divya Joshi", handle: "@divya_foodblog", testimonial: + "The attention to detail is remarkable. From presentation to taste, everything was perfect. Worth every visit!", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-with-charming-smile-posing-street-with-interesting-architecture-background_613910-14028.jpg", imageAlt: "Divya Joshi"}, { - id: "6", - name: "Arjun Verma", - handle: "@arjun_gourmet", - testimonial: - "Finest vegetarian dining experience I've had. The staff is courteous, and the food quality is consistent.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-female-with-smartphone_273609-4250.jpg?_wi=1", - imageAlt: "Arjun Verma", - }, + id: "6", name: "Arjun Verma", handle: "@arjun_gourmet", testimonial: + "Finest vegetarian dining experience I've had. The staff is courteous, and the food quality is consistent.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-female-with-smartphone_273609-4250.jpg", imageAlt: "Arjun Verma"}, ]} ariaLabel="Customer testimonials section" /> @@ -308,14 +229,7 @@ export default function HomePage() { textboxLayout="default" useInvertedBackground={true} names={[ - "Google Reviews", - "Food Aggregators", - "Social Media Community", - "Local Guides", - "Food Bloggers", - "Tourism Boards", - "Event Organizers", - ]} + "Google Reviews", "Food Aggregators", "Social Media Community", "Local Guides", "Food Bloggers", "Tourism Boards", "Event Organizers"]} speed={40} showCard={true} ariaLabel="Social proof section" @@ -326,17 +240,13 @@ export default function HomePage() { diff --git a/src/app/reservation/page.tsx b/src/app/reservation/page.tsx index ceacb9f..c70eca6 100644 --- a/src/app/reservation/page.tsx +++ b/src/app/reservation/page.tsx @@ -64,7 +64,7 @@ export default function ReservationPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmall" - background="floatingGradient" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="solid" @@ -78,9 +78,7 @@ export default function ReservationPage() { id: item.id, }))} button={{ - text: "Reserve Table", - href: "/reservation", - }} + text: "Reserve Table", href: "/reservation"}} animateOnLoad={true} /> @@ -251,17 +249,13 @@ export default function ReservationPage() { diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index 59a98e0..91f3ba2 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -67,7 +67,7 @@ export default function ReviewsPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmall" - background="floatingGradient" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="solid" @@ -81,9 +81,7 @@ export default function ReviewsPage() { id: item.id, }))} button={{ - text: "Reserve Table", - href: "/reservation", - }} + text: "Reserve Table", href: "/reservation"}} animateOnLoad={true} /> @@ -101,65 +99,29 @@ export default function ReviewsPage() { showRating={true} testimonials={[ { - id: "1", - name: "Priya Sharma", - handle: "@priya_nashik", - testimonial: - "Absolutely loved the ambiance and the food quality! The Korean Garlic Bun was divine. Perfect spot for anniversary celebrations.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-woman-looking-up-copy-space_1262-3088.jpg?_wi=3", - imageAlt: "Priya Sharma", - }, + id: "1", name: "Priya Sharma", handle: "@priya_nashik", testimonial: + "Absolutely loved the ambiance and the food quality! The Korean Garlic Bun was divine. Perfect spot for anniversary celebrations.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-woman-looking-up-copy-space_1262-3088.jpg", imageAlt: "Priya Sharma"}, { - id: "2", - name: "Rohit Desai", - handle: "@rohit_foodie", - testimonial: - "Best vegetarian fine dining experience in Nashik. The service is impeccable and the mocktails are creative and refreshing.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-88087.jpg?_wi=3", - imageAlt: "Rohit Desai", - }, + id: "2", name: "Rohit Desai", handle: "@rohit_foodie", testimonial: + "Best vegetarian fine dining experience in Nashik. The service is impeccable and the mocktails are creative and refreshing.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-woman-with-enthusiastic-face-expression-smiling-looking-confident-standing-s_1258-88087.jpg", imageAlt: "Rohit Desai"}, { - id: "3", - name: "Aisha Khan", - handle: "@aisha_dines", - testimonial: - "Brought my family and everyone loved it! The Tiramisu is a must-try. Highly recommend for special occasions.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/confident-asian-leader-his-team-specialists_1262-4868.jpg?_wi=3", - imageAlt: "Aisha Khan", - }, + id: "3", name: "Aisha Khan", handle: "@aisha_dines", testimonial: + "Brought my family and everyone loved it! The Tiramisu is a must-try. Highly recommend for special occasions.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/confident-asian-leader-his-team-specialists_1262-4868.jpg", imageAlt: "Aisha Khan"}, { - id: "4", - name: "Nikhil Patel", - handle: "@nikhil_chef", - testimonial: - "Outstanding plating and flavor combinations. This restaurant truly celebrates vegetarian cuisine. A gem in Nashik.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-girl-taking-selfie-cafe_171337-9756.jpg?_wi=2", - imageAlt: "Nikhil Patel", - }, + id: "4", name: "Nikhil Patel", handle: "@nikhil_chef", testimonial: + "Outstanding plating and flavor combinations. This restaurant truly celebrates vegetarian cuisine. A gem in Nashik.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-girl-taking-selfie-cafe_171337-9756.jpg", imageAlt: "Nikhil Patel"}, { - id: "5", - name: "Divya Joshi", - handle: "@divya_foodblog", - testimonial: - "The attention to detail is remarkable. From presentation to taste, everything was perfect. Worth every visit!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-with-charming-smile-posing-street-with-interesting-architecture-background_613910-14028.jpg?_wi=2", - imageAlt: "Divya Joshi", - }, + id: "5", name: "Divya Joshi", handle: "@divya_foodblog", testimonial: + "The attention to detail is remarkable. From presentation to taste, everything was perfect. Worth every visit!", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-with-charming-smile-posing-street-with-interesting-architecture-background_613910-14028.jpg", imageAlt: "Divya Joshi"}, { - id: "6", - name: "Arjun Verma", - handle: "@arjun_gourmet", - testimonial: - "Finest vegetarian dining experience I've had. The staff is courteous, and the food quality is consistent.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-female-with-smartphone_273609-4250.jpg?_wi=2", - imageAlt: "Arjun Verma", - }, + id: "6", name: "Arjun Verma", handle: "@arjun_gourmet", testimonial: + "Finest vegetarian dining experience I've had. The staff is courteous, and the food quality is consistent.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-female-with-smartphone_273609-4250.jpg", imageAlt: "Arjun Verma"}, ]} ariaLabel="Customer testimonials section" /> @@ -175,14 +137,7 @@ export default function ReviewsPage() { textboxLayout="default" useInvertedBackground={true} names={[ - "Google Reviews", - "Food Aggregators", - "Social Media Community", - "Local Guides", - "Food Bloggers", - "Tourism Boards", - "Event Organizers", - ]} + "Google Reviews", "Food Aggregators", "Social Media Community", "Local Guides", "Food Bloggers", "Tourism Boards", "Event Organizers"]} speed={40} showCard={true} ariaLabel="Social proof section" @@ -193,17 +148,13 @@ export default function ReviewsPage() {