Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-01 16:23:24 +00:00

View File

@@ -10,7 +10,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Instagram, MapPin } from "lucide-react";
import { Instagram, MapPin, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -37,6 +37,7 @@ export default function LandingPage() {
{ name: "Visit", id: "contact" },
]}
brandName="Asteroid Vinyl Cafe"
button={{ text: "Call Us", onClick: () => window.location.href = 'tel:4242276255' }}
/>
</div>
@@ -59,7 +60,7 @@ export default function LandingPage() {
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898807-082yvq5d.png?_wi=4", imageAlt: "Cafe Exterior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-ep3prjjh.png?_wi=3", imageAlt: "Vinyl Detail" },
]}
buttons={[{ text: "View Menu", href: "#menu" }]}
buttons={[{ text: "View Menu", href: "#menu" }]
/>
</div>
@@ -109,29 +110,16 @@ export default function LandingPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Are dogs allowed?", content: "Yes! We welcome well-behaved dogs inside and outside." },
{ id: "2", title: "Do you offer delivery?", content: "We currently do not offer delivery." },
{ id: "3", title: "Is there parking?", content: "Yes, we offer both free parking lot access and free street parking." },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-ep3prjjh.png?_wi=4"
imageAlt="Cafe Amenities"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
title="Cafe Policies & Info"
description="Here's what you need to know."
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
animationType="slide-up"
useInvertedBackground={false}
faqs={[{ id: "hrs-1", title: "Operating Hours", content: "Sun-Fri: 8am-4pm, Sat: 8am-6pm" }]}
faqs={[
{ id: "hrs-1", title: "Operating Hours", content: "Sun-Fri: 8am-4pm, Sat: 8am-6pm" },
{ id: "1", title: "Are dogs allowed?", content: "Yes! We welcome well-behaved dogs inside and outside." },
{ id: "2", title: "Do you offer delivery?", content: "We currently do not offer delivery." },
{ id: "3", title: "Is there parking?", content: "Yes, we offer both free parking lot access and free street parking." },
]}
ctaTitle="Visit Us Today"
ctaDescription="Located at 1101 S. La Brea Ave, Inglewood."
ctaButton={{ text: "Get Directions", href: "#" }}
@@ -149,4 +137,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}