Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-09 19:25:16 +00:00
2 changed files with 27 additions and 1404 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -29,7 +29,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "home" },
{ name: "Home", id: "/" },
{ name: "Menu", id: "menu" },
{ name: "Reviews", id: "reviews" },
{ name: "Location", id: "location" },
@@ -165,16 +165,20 @@ export default function LandingPage() {
tagAnimation="slide-up"
testimonials={[
{
id: "1", name: "Priya Sharma", handle: "@priya_sharma", testimonial: "Perfectly soft, moist cake and balanced sweetness. Slurp Bakery never disappoints. The chocolate mud cake is absolutely divine!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg", imageAlt: "Priya Sharma"
id: "1", name: "Priya Sharma", handle: "@priya_sharma", testimonial: "Perfectly soft, moist cake and balanced sweetness. Slurp Bakery never disappoints. The chocolate mud cake is absolutely divine!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg", imageAlt: "Priya Sharma"
},
{
id: "2", name: "Rajesh Kumar", handle: "@rajesh_bday", testimonial: "Custom birthday cake was stunning! The team understood exactly what I wanted and delivered beyond expectations. Highly recommended!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-playing-with-party-accesories_1187-3745.jpg", imageAlt: "Rajesh Kumar"
id: "2", name: "Rajesh Kumar", handle: "@rajesh_bday", testimonial: "Custom birthday cake was stunning! The team understood exactly what I wanted and delivered beyond expectations. Highly recommended!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-playing-with-party-accesories_1187-3745.jpg", imageAlt: "Rajesh Kumar"
},
{
id: "3", name: "Ananya Gupta", handle: "@sweet_lover", testimonial: "Fresh, delicious, and available 24/7. This is my go-to place for late-night dessert cravings. Love the friendly staff!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg", imageAlt: "Ananya Gupta"
id: "3", name: "Ananya Gupta", handle: "@sweet_lover", testimonial: "Fresh, delicious, and available 24/7. This is my go-to place for late-night dessert cravings. Love the friendly staff!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg", imageAlt: "Ananya Gupta"
},
{
id: "4", name: "Vikram Singh", handle: "@vikram_coffee", testimonial: "Fruit cake was incredibly fresh and delicious. Perfect for office celebrations. Quick delivery and professional service!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-businesswoman-indoors_23-2148824825.jpg", imageAlt: "Vikram Singh"
id: "4", name: "Vikram Singh", handle: "@vikram_coffee", testimonial: "Fruit cake was incredibly fresh and delicious. Perfect for office celebrations. Quick delivery and professional service!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-businesswoman-indoors_23-2148824825.jpg", imageAlt: "Vikram Singh"
}
]}
showRating={true}
@@ -253,7 +257,7 @@ export default function LandingPage() {
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "#home" },
{ label: "Home", href: "/" },
{ label: "Menu", href: "#menu" },
{ label: "Reviews", href: "#reviews" },
{ label: "Order Cake", href: "#order-form" }