diff --git a/src/app/page.tsx b/src/app/page.tsx index acaa20e..c5756de 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import { Facebook, Instagram, Mail, Phone, MapPin } from 'lucide-react'; export default function LandingPage() { return ( @@ -19,7 +20,7 @@ export default function LandingPage() { contentWidth="mediumSmall" sizing="mediumLargeSizeLargeTitles" background="none" - cardStyle="inset" + cardStyle="gradient-bordered" primaryButtonStyle="radial-glow" secondaryButtonStyle="glass" headingFontWeight="bold" @@ -28,22 +29,10 @@ export default function LandingPage() { @@ -178,62 +69,10 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" gridVariant="three-columns-all-equal-width" - useInvertedBackground={false} products={[ - { - id: "1", - brand: "Signature", - name: "Crawfish Boil", - price: "$28", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/view-crawfish-plate_23-2150426224.jpg?_wi=1", - }, - { - id: "2", - brand: "Premium", - name: "King Crab Platter", - price: "$55", - rating: 5, - reviewCount: "85", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-crawfish-corn-still-life_23-2150470290.jpg?_wi=1", - }, - { - id: "3", - brand: "Classic", - name: "Smoked Sausage Links", - price: "$18", - rating: 4, - reviewCount: "95", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-crawfish-corn-still-life_23-2150470322.jpg?_wi=1", - }, - { - id: "4", - brand: "Catch", - name: "Shrimp Feast", - price: "$32", - rating: 5, - reviewCount: "210", - imageSrc: "http://img.b2bpic.net/free-photo/view-crawfish-plate_23-2150426224.jpg?_wi=2", - }, - { - id: "5", - brand: "Deluxe", - name: "Lobster Tail Boil", - price: "$62", - rating: 5, - reviewCount: "45", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-crawfish-corn-still-life_23-2150470290.jpg?_wi=2", - }, - { - id: "6", - brand: "Mix", - name: "Corn & Potato Combo", - price: "$12", - rating: 4, - reviewCount: "300", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-crawfish-corn-still-life_23-2150470322.jpg?_wi=2", - }, + { id: "1", brand: "Signature", name: "Crawfish Boil", price: "$28", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/view-crawfish-plate_23-2150426224.jpg?_wi=1" }, + { id: "2", brand: "Premium", name: "King Crab Platter", price: "$55", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-crawfish-corn-still-life_23-2150470290.jpg?_wi=1" }, + { id: "3", brand: "Classic", name: "Smoked Sausage Links", price: "$18", rating: 4, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-crawfish-corn-still-life_23-2150470322.jpg?_wi=1" }, ]} title="The Daily Catch" description="Savor our signature seafood boils, seasoned to perfection and served fresh daily." @@ -245,46 +84,8 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} testimonials={[ - { - id: "1", - title: "Incredible Flavor", - quote: "The best crawfish I have had outside of New Orleans. Absolutely delicious!", - name: "Marcus A.", - role: "Food Critic", - imageSrc: "http://img.b2bpic.net/free-photo/lovely-couple-having-fun-while-eating-sushi-rolls-restaurant-modern-terrace_496169-1902.jpg", - }, - { - id: "2", - title: "Warm Atmosphere", - quote: "Love the vibes and the seafood is consistently fresh and spicy.", - name: "Sarah W.", - role: "Local Regular", - imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-pizza-snack-outdoors_23-2150610265.jpg", - }, - { - id: "3", - title: "Authentic Recipes", - quote: "Finally, a place that understands what a real boil is supposed to be.", - name: "James L.", - role: "Chef", - imageSrc: "http://img.b2bpic.net/free-photo/adolescent-girl-counseling-discuss-behavioral-issues-personal-challenges_482257-107973.jpg", - }, - { - id: "4", - title: "Great Service", - quote: "Staff is wonderful and the portions are huge for the price.", - name: "Elena R.", - role: "Frequent Diner", - imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-paying-with-her-phone-via-contactless-payment-while-having-lunch-with-boyfriend-bar_637285-647.jpg", - }, - { - id: "5", - title: "My Favorite Spot", - quote: "Every trip here is a highlight of my week. Can't recommend enough!", - name: "Tom P.", - role: "Foodie", - imageSrc: "http://img.b2bpic.net/free-photo/sea-food-table_140725-7441.jpg", - }, + { id: "1", title: "Incredible Flavor", quote: "The best crawfish I have had outside of New Orleans.", name: "Marcus A.", role: "Food Critic" }, + { id: "2", title: "Warm Atmosphere", quote: "Love the vibes and the seafood is consistently fresh and spicy.", name: "Sarah W.", role: "Local Regular" }, ]} title="What Our Guests Say" description="Authentic reviews from our community who appreciate quality cajun cooking." @@ -292,35 +93,28 @@ export default function LandingPage() {
-
); -} +} \ No newline at end of file