diff --git a/src/app/page.tsx b/src/app/page.tsx
index 474d045..dd47a5d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -7,6 +7,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TextAbout from '@/components/sections/about/TextAbout';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Flame, Star, Home, Phone, MapPin, Clock } from 'lucide-react';
@@ -18,7 +19,7 @@ export default function HomePage() {
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="mediumLargeSizeMediumTitles"
- background="noiseDiagonalGradient"
+ background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
@@ -29,9 +30,9 @@ export default function HomePage() {
brandName="Lenny's Burger Shop"
navItems={[
{ name: "Home", id: "hero" },
- { name: "Menu", id: "menu" },
+ { name: "Menu", id: "popular-menu" },
{ name: "About", id: "about" },
- { name: "Reviews", id: "reviews" },
+ { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
/>
@@ -41,7 +42,7 @@ export default function HomePage() {
@@ -88,55 +81,20 @@ export default function HomePage() {
gridVariant="three-columns-all-equal-width"
products={[
{
- id: "1",
- brand: "Lenny's",
- name: "Cowboy Burger Combo",
- price: "$14.99",
- rating: 5,
- reviewCount: "487",
- imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-with-cheese-lettuce-tomato-served-with-fries-coke_140725-1484.jpg?_wi=1",
- imageAlt: "Cowboy Burger Combo",
- },
+ id: "1", brand: "Lenny's", name: "Cowboy Burger Combo", price: "$14.99", rating: 5,
+ reviewCount: "487", imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-with-cheese-lettuce-tomato-served-with-fries-coke_140725-1484.jpg", imageAlt: "Cowboy Burger Combo"},
{
- id: "2",
- brand: "Lenny's",
- name: "Classic Cheeseburger",
- price: "$10.99",
- rating: 5,
- reviewCount: "612",
- imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-stuffed-with-vegetables-apetizers-served-with-french-fries_114579-1552.jpg?_wi=1",
- imageAlt: "Classic Cheeseburger",
- },
+ id: "2", brand: "Lenny's", name: "Classic Cheeseburger", price: "$10.99", rating: 5,
+ reviewCount: "612", imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-stuffed-with-vegetables-apetizers-served-with-french-fries_114579-1552.jpg", imageAlt: "Classic Cheeseburger"},
{
- id: "3",
- brand: "Lenny's",
- name: "Jumbo Vienna Dog",
- price: "$9.99",
- rating: 5,
- reviewCount: "356",
- imageSrc: "http://img.b2bpic.net/free-photo/salad-hot-dogs-wooden-background_23-2148242539.jpg?_wi=1",
- imageAlt: "Jumbo Vienna Dog",
- },
+ id: "3", brand: "Lenny's", name: "Jumbo Vienna Dog", price: "$9.99", rating: 5,
+ reviewCount: "356", imageSrc: "http://img.b2bpic.net/free-photo/salad-hot-dogs-wooden-background_23-2148242539.jpg", imageAlt: "Jumbo Vienna Dog"},
{
- id: "4",
- brand: "Lenny's",
- name: "Fresh Seasoned Fries",
- price: "$4.99",
- rating: 5,
- reviewCount: "891",
- imageSrc: "http://img.b2bpic.net/free-photo/top-view-french-fries-with-salt-herbs_23-2148701459.jpg?_wi=1",
- imageAlt: "Fresh Seasoned Fries",
- },
+ id: "4", brand: "Lenny's", name: "Fresh Seasoned Fries", price: "$4.99", rating: 5,
+ reviewCount: "891", imageSrc: "http://img.b2bpic.net/free-photo/top-view-french-fries-with-salt-herbs_23-2148701459.jpg", imageAlt: "Fresh Seasoned Fries"},
{
- id: "5",
- brand: "Lenny's",
- name: "Peanut Butter Shake",
- price: "$6.99",
- rating: 5,
- reviewCount: "534",
- imageSrc: "http://img.b2bpic.net/free-photo/cup-delicious-drink-with-pinecones-straw-dark-board-high-quality-photo_114579-67918.jpg?_wi=1",
- imageAlt: "Peanut Butter Shake",
- },
+ id: "5", brand: "Lenny's", name: "Peanut Butter Shake", price: "$6.99", rating: 5,
+ reviewCount: "534", imageSrc: "http://img.b2bpic.net/free-photo/cup-delicious-drink-with-pinecones-straw-dark-board-high-quality-photo_114579-67918.jpg", imageAlt: "Peanut Butter Shake"},
]}
buttons={[{ text: "View Full Menu", href: "/menu" }]}
carouselMode="buttons"
@@ -156,7 +114,7 @@ export default function HomePage() {
/>
-