Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cc93365406 | |||
| 24c7098d12 | |||
| 0ffafcb688 | |||
| 49894eac5e | |||
| 47293682e0 | |||
| 518a8cd573 | |||
| 8b049e8864 |
@@ -3,7 +3,6 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
@@ -37,6 +36,7 @@ export default function LandingPage() {
|
||||
{ name: "Visit", id: "contact" },
|
||||
]}
|
||||
brandName="Asteroid Vinyl Cafe"
|
||||
button={{ text: "Call Us", onClick: () => window.location.href = 'tel:4242276255' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -80,11 +80,11 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Cafe de Olla", price: "$6.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=1", imageAlt: "Cafe de Olla" },
|
||||
{ id: "2", name: "Galaxy Latte", price: "$6.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=2", imageAlt: "Galaxy Latte" },
|
||||
{ id: "3", name: "House Special", price: "$6.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=3", imageAlt: "House Special" },
|
||||
{ id: "4", name: "Espresso Tonic", price: "$7.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=4", imageAlt: "Espresso Tonic" },
|
||||
{ id: "5", name: "Cold Brew", price: "$5.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=5", imageAlt: "Cold Brew" },
|
||||
{ id: "1", name: "Cafe de Olla", price: "$6.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=1" },
|
||||
{ id: "2", name: "Galaxy Latte", price: "$6.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=2" },
|
||||
{ id: "3", name: "House Special", price: "$6.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=3" },
|
||||
{ id: "4", name: "Espresso Tonic", price: "$7.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=4" },
|
||||
{ id: "5", name: "Cold Brew", price: "$5.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bk7mBTJcMPKfsFHipdjzxq4EhX/uploaded-1775059898808-l6dcwpyu.jpg?_wi=5" },
|
||||
]}
|
||||
title="Menu Highlights"
|
||||
description="Our curated selection of classics and house specials."
|
||||
@@ -109,29 +109,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 +136,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user