3 Commits

Author SHA1 Message Date
3d4c3531fb Merge version_2 into main
Merge version_2 into main
2026-03-17 21:48:27 +00:00
40e982ce1b Update src/app/page.tsx 2026-03-17 21:48:24 +00:00
459be7eb3e Merge version_1 into main
Merge version_1 into main
2026-03-17 21:37:23 +00:00

View File

@@ -9,7 +9,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Camera, DollarSign, Leaf, MapPin, Smile } from 'lucide-react';
import { Camera, DollarSign, Leaf, MapPin, Smile, Phone, Mail, Clock, MapPinIcon } from 'lucide-react';
export default function LandingPage() {
return (
@@ -31,6 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Menu", id: "menu" },
{ name: "Why Us", id: "why-us" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Gallery", id: "gallery" },
{ name: "Contact", id: "contact" }
]}
@@ -45,7 +46,7 @@ export default function LandingPage() {
tag="Order Now"
tagAnimation="slide-up"
buttons={[
{ text: "Call Now", href: "tel:+1234567890" },
{ text: "Call Now", href: "tel:+18139876543" },
{ text: "Order / Reserve", href: "#contact" }
]}
buttonAnimation="slide-up"
@@ -141,7 +142,7 @@ export default function LandingPage() {
tag="Customer Reviews"
tagAnimation="slide-up"
testimonials={[
{ id: "1", name: "Sarah Johnson", role: "Regular Customer", company: "Local Community", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-european-woman-with-charismatic-smile-laughing-cheerfully_273609-9262.jpg", imageAlt: "professional headshot man smiling" },
{ id: "1", name: "Sarah Johnson", role: "Regular Customer", company: "Local Community", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-european-woman-with-charismatic-smile-laughing-cheerfully_273609-9262.jpg", imageAlt: "professional headshot woman smiling" },
{ id: "2", name: "Michael Chen", role: "Takeout Enthusiast", company: "Downtown Workers", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-beauty-businesswoman-leaning-against-brick-wall_613910-773.jpg", imageAlt: "professional headshot woman portrait" },
{ id: "3", name: "David Martinez", role: "Food Critic", company: "Local Blogger", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-smiling-with-arms-crossed_1187-3243.jpg", imageAlt: "diverse professional headshot male" },
{ id: "4", name: "Emily Rodriguez", role: "Family Dining", company: "Community Member", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg", imageAlt: "professional woman business portrait" }
@@ -151,7 +152,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "See All Reviews", href: "#contact" }
{ text: "See All Reviews", href: "#testimonials" }
]}
buttonAnimation="slide-up"
/>
@@ -175,12 +176,12 @@ export default function LandingPage() {
<ContactCenter
tag="Get in Touch"
title="Ready to Order or Reserve?"
description="Contact us today for takeout, reservations, or catering inquiries. We're here to serve you."
description="Contact us in Tampa, FL. We're here to serve you with authentic sushi and hibachi."
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Get Started"
termsText="We'll send you our menu, specials, and reservation options."
termsText="Visit us at 1234 Tampa Avenue, Tampa, FL 33602 | Phone: (813) 987-6543 | Email: info@sushicafe.com | Hours: Tue-Sun 11am-10pm | Closed Mondays"
/>
</div>
@@ -209,18 +210,18 @@ export default function LandingPage() {
},
{
title: "Contact", items: [
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
{ label: "Phone: (813) 987-6543", href: "tel:+18139876543" },
{ label: "Email: info@sushicafe.com", href: "mailto:info@sushicafe.com" },
{ label: "Hours: Tue-Sun 11am-10pm", href: "#" },
{ label: "Closed Mondays", href: "#" }
]
},
{
title: "Follow Us", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Google Maps", href: "https://maps.google.com" },
{ label: "Yelp", href: "https://yelp.com" }
title: "Location", items: [
{ label: "1234 Tampa Avenue", href: "https://maps.google.com" },
{ label: "Tampa, FL 33602", href: "https://maps.google.com" },
{ label: "Easy Parking", href: "#" },
{ label: "Dine-in & Takeout", href: "#" }
]
}
]}