Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-01-14 21:02:35 +00:00
2 changed files with 21 additions and 5 deletions

View File

@@ -1265,4 +1265,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -3,13 +3,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MediaAbout from '@/components/sections/about/MediaAbout';
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Gift, Heart, Mail, Sparkles, Star, UtensilsCrossed } from "lucide-react";
import { Gift, Heart, Mail, Sparkles, Star, UtensilsCrossed, Flame, Wine } from "lucide-react";
export default function LandingPage() {
return (
@@ -55,7 +55,7 @@ export default function LandingPage() {
</div>
<div id="about" data-section="about">
<MediaAbout
<SplitAbout
title="About The Mixer"
description="The Mixer is a family-owned restaurant & bar located in the vibrant Liberty Station neighborhood of San Diego. We're dedicated to serving exceptional cocktails, delicious burgers, and mouthwatering brunch with genuine hospitality. Whether you're joining us for happy hour, a special celebration, or an everyday escape, we create moments of connection and good vibes for our community."
tag="San Diego's Community Hub"
@@ -64,7 +64,23 @@ export default function LandingPage() {
buttons={[
{ text: "Join Super Rewards", href: "rewards" }
]}
bulletPoints={[
{
title: "Craft Cocktails", description: "Expert mixologists crafting signature drinks with premium spirits and fresh ingredients", icon: Wine
},
{
title: "Gourmet Burgers", description: "Handcrafted burgers featuring grass-fed beef, aged cheddar, and house-made sauces", icon: UtensilsCrossed
},
{
title: "Weekend Brunch", description: "Delicious brunch menu with fresh flavors and morning cocktails to start your day", icon: Sparkles
},
{
title: "Community Vibes", description: "A welcoming space where locals gather for connection, celebration, and good times", icon: Heart
}
]}
textboxLayout="default"
useInvertedBackground="invertDefault"
imagePosition="right"
/>
</div>
@@ -216,4 +232,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}