5 Commits

Author SHA1 Message Date
8581fac039 Merge version_4 into main
Merge version_4 into main
2026-05-25 00:34:07 +00:00
45fa28c212 Update src/app/page.tsx 2026-05-25 00:34:04 +00:00
a53b72d7ac Merge version_3 into main
Merge version_3 into main
2026-05-25 00:29:46 +00:00
cfe0878f10 Update src/app/page.tsx 2026-05-25 00:29:40 +00:00
f545910ee3 Merge version_2 into main
Merge version_2 into main
2026-05-25 00:28:30 +00:00

View File

@@ -3,9 +3,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
@@ -133,19 +133,20 @@ export default function LandingPage() {
{ id: "m2", value: "7 AM", title: "Opening Time", items: ["Open early daily"] },
{ id: "m3", value: "10.6mi", title: "Location", items: ["Serving Pueblo area"] },
]}
title="By The Numbers"
description="Star Bar facts and popularity."
title="Business Statistics"
description="Star Bar performance metrics and community reach."
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "f1", title: "Are you open?", content: "Yes, we are open! We welcome locals and visitors daily." },
{ id: "f2", title: "What are your hours?", content: "Generally 7:00 AM until late. Check our latest updates for seasonal changes." },
{ id: "f3", title: "Do you serve food?", content: "Yes, we offer a range of pub meals and snacks all day." },
{ id: "f4", title: "Is there parking?", content: "Street parking is available right in front of the bar." },
]}
title="Common Questions"
description="Everything you need to know about Star Bar."
@@ -157,21 +158,23 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Visit Us"
title="Come Say Hello"
description="Swing by 300 Spring St in Pueblo and grab a cold drink with us today."
tag="Contact Us"
title="Get In Touch"
description="Need to reach the team at Star Bar? Give us a call or visit during our operating hours."
buttons={[{ text: "(719) 542-9718", href: "tel:7195429718" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBase
logoText="Star Bar"
leftLink={{ text: "© 2024 Star Bar", href: "#" }}
rightLink={{ text: "300 Spring St, Pueblo, CO", href: "https://maps.google.com" }}
columns={[
{ title: "Quick Links", items: [{ label: "Menu", href: "#products" }, { label: "Contact", href: "#contact" }] },
{ title: "Info", items: [{ label: "300 Spring St, Pueblo", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}