Compare commits
23 Commits
version_15
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ec235c48b | |||
|
|
9717e121f6 | ||
|
|
a5283d27c8 | ||
| 82d3bb2af3 | |||
| 992017f936 | |||
| d353c846ae | |||
|
|
67ade2fdd9 | ||
|
|
e29a634ca5 | ||
| c45973d9ed | |||
|
|
d1f64ebcfe | ||
| 7429e33760 | |||
| cf1c3e228d | |||
| 5871d3f16e | |||
|
|
d4da9836a5 | ||
|
|
d6fabcdb70 | ||
| de908b7def | |||
|
|
b51e5b2484 | ||
| 784b42c0ea | |||
|
|
d304be0199 | ||
| b8bb7a6d5f | |||
| dfe477646a | |||
|
|
7a6adf8255 | ||
| 69582c45b1 |
@@ -13,6 +13,13 @@ import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
import EventsSection from './HomePage/sections/Events';{/* webild-stub @2026-06-02T15:24:31.770Z: To make testimonials more impactful, ensure each quote includes an avatar or photo of the reviewer, along with their name and, if possible, their location or a brief title, to build greater trust. */}
|
||||
|
||||
{/* webild-stub @2026-06-02T15:14:24.839Z: Introduce a dedicated section for upcoming events, live music, or special releases to encourage repeat visits and community engagement, transforming passive viewers into active participants. */}
|
||||
|
||||
{/* webild-stub @2026-06-02T14:34:15.285Z: make badges in hero sections each on in different color */}
|
||||
|
||||
{/* webild-stub @2026-06-02T14:28:11.483Z: make badges in hero sections each on in different color */}
|
||||
@@ -24,6 +31,7 @@ export default function HomePage(): React.JSX.Element {
|
||||
<BeersSection />
|
||||
<StorySection />
|
||||
<TaproomSection />
|
||||
<EventsSection />
|
||||
<TestimonialQuoteCardsSection />
|
||||
<FaqSimpleSection />
|
||||
<ContactSection />
|
||||
|
||||
@@ -1,75 +1,85 @@
|
||||
import React from 'react';
|
||||
import Button from '@/components/ui/Button';
|
||||
import Card from '@/components/ui/Card';
|
||||
import ScrollReveal from '@/components/ui/ScrollReveal';
|
||||
import TextAnimation from '@/components/ui/TextAnimation';
|
||||
import GridOrCarousel from '@/components/ui/GridOrCarousel';
|
||||
import Card from '@/components/ui/Card';
|
||||
import Tag from '@/components/ui/Tag';
|
||||
|
||||
export default function BeersSection() {
|
||||
const beers = [
|
||||
{
|
||||
name: "Mountain Peak Pilsner",
|
||||
style: "Pilsner",
|
||||
description: "Crisp and refreshing with a floral hop aroma and a clean, snappy finish. Perfect for a sunny day on the trails.",
|
||||
imageSrc: "",
|
||||
imageAlt: "Glass of crisp Mountain Peak Pilsner beer on a wooden table"
|
||||
name: "Mountain Pale Ale",
|
||||
type: "Pale Ale",
|
||||
abv: "5.5%",
|
||||
description: "A crisp and refreshing pale ale with notes of pine and citrus, brewed with local mountain spring water.",
|
||||
alt: "Glass of pale ale craft beer with pine background"
|
||||
},
|
||||
{
|
||||
name: "Pine Ridge IPA",
|
||||
style: "India Pale Ale",
|
||||
description: "Bold pine and citrus notes balanced by a sturdy malt backbone. A true Vermont-style IPA with a resinous kick.",
|
||||
imageSrc: "",
|
||||
imageAlt: "Pint of hazy Pine Ridge IPA beer with hops in the background"
|
||||
name: "Cedar Stout",
|
||||
type: "Stout",
|
||||
abv: "7.2%",
|
||||
description: "Rich and complex with deep roasted coffee and dark chocolate flavors, perfect for chilly evenings.",
|
||||
alt: "Pint of dark stout craft beer with roasted coffee beans"
|
||||
},
|
||||
{
|
||||
name: "Black Bear Stout",
|
||||
style: "Stout",
|
||||
description: "Rich and complex with deep flavors of roasted coffee, dark chocolate, and a hint of vanilla. Smooth and warming.",
|
||||
imageSrc: "",
|
||||
imageAlt: "Dark and rich Black Bear Stout beer in a snifter glass"
|
||||
name: "Valley IPA",
|
||||
type: "IPA",
|
||||
abv: "6.8%",
|
||||
description: "A hop-forward India Pale Ale bursting with tropical fruit aromas and a smooth, bitter finish.",
|
||||
alt: "Glass of IPA craft beer with tropical fruits"
|
||||
},
|
||||
{
|
||||
name: "Sunset Amber",
|
||||
type: "Amber Ale",
|
||||
abv: "5.0%",
|
||||
description: "A perfectly balanced amber ale featuring toasted caramel malts and a subtle earthy hop profile.",
|
||||
alt: "Glass of amber ale craft beer on a wooden table"
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<section id="beers" className="bg-background">
|
||||
<section id="beers" className="relative bg-background overflow-hidden">
|
||||
<div className="absolute top-0 left-1/2 -translate-x-1/2 w-[800px] h-[400px] bg-primary-cta/5 blur-[120px] rounded-full pointer-events-none -z-10" />
|
||||
|
||||
<div className="max-w-content-width mx-auto px-6">
|
||||
<div className="text-center">
|
||||
<TextAnimation text="Our Beers" variant="slide-up" gradientText={false} tag="h2" className="text-4xl md:text-5xl font-bold text-foreground mb-4" />
|
||||
<ScrollReveal variant="slide-up" delay={0.1}>
|
||||
<p className="text-lg text-muted-foreground max-w-content-width mx-auto">
|
||||
Discover our core lineup of artisanal brews, crafted with passion and the finest local ingredients.
|
||||
<ScrollReveal variant="slide-up">
|
||||
<TextAnimation
|
||||
text="Our Beers"
|
||||
variant="fade-blur"
|
||||
gradientText={false}
|
||||
tag="h2"
|
||||
className="text-4xl md:text-5xl lg:text-6xl font-bold text-foreground mb-6"
|
||||
/>
|
||||
<p className="text-lg md:text-xl text-muted-foreground max-w-content-width mx-auto">
|
||||
Crafted with passion and precision, our core lineup features something for every palate.
|
||||
</p>
|
||||
</ScrollReveal>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
|
||||
<GridOrCarousel>
|
||||
{beers.map((beer, index) => (
|
||||
<ScrollReveal key={index} variant="slide-up" delay={index * 0.1}>
|
||||
<Card className="h-full flex flex-col overflow-hidden border border-border/50 bg-card hover:-translate-y-1 transition-transform duration-300">
|
||||
<div className="relative h-64 overflow-hidden">
|
||||
<Card className="h-full flex flex-col overflow-hidden border border-border/50 bg-card hover:-translate-y-2 transition-all duration-300 hover:shadow-xl">
|
||||
<div className="relative h-72 w-full bg-muted/50">
|
||||
<img
|
||||
src={beer.imageSrc}
|
||||
alt={beer.imageAlt}
|
||||
className="w-full h-full object-cover transition-transform duration-500 hover:scale-105"
|
||||
src=""
|
||||
alt={beer.alt}
|
||||
className="w-full h-full object-cover"
|
||||
/>
|
||||
<div className="absolute top-4 right-4 bg-background/90 backdrop-blur-sm px-3 py-1 rounded-full text-xs font-medium text-foreground">
|
||||
{beer.style}
|
||||
<div className="absolute top-4 right-4 flex flex-col gap-2 items-end">
|
||||
<Tag text={beer.type} className="bg-background/90 backdrop-blur-md border-none shadow-sm" />
|
||||
<Tag text={`ABV ${beer.abv}`} className="bg-primary-cta text-primary-cta-text border-none shadow-sm" />
|
||||
</div>
|
||||
</div>
|
||||
<div className="p-6 flex flex-col flex-grow">
|
||||
<h3 className="text-xl font-bold text-foreground mb-2">{beer.name}</h3>
|
||||
<p className="text-muted-foreground mb-6 flex-grow">{beer.description}</p>
|
||||
<Button text="Explore Our Brews" variant="primary" className="w-full" />
|
||||
<div className="p-8 flex-grow flex flex-col">
|
||||
<h3 className="text-2xl font-bold text-foreground mb-3">{beer.name}</h3>
|
||||
<p className="text-muted-foreground flex-grow leading-relaxed">{beer.description}</p>
|
||||
</div>
|
||||
</Card>
|
||||
</ScrollReveal>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div className="text-center">
|
||||
<ScrollReveal variant="slide-up" delay={0.4}>
|
||||
<Button text="Find Your Favorite Beer" variant="secondary" href="#taproom" />
|
||||
</ScrollReveal>
|
||||
</div>
|
||||
</GridOrCarousel>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
||||
52
src/pages/HomePage/sections/Events.tsx
Normal file
52
src/pages/HomePage/sections/Events.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// Created by create_section tool.
|
||||
|
||||
import React from 'react';
|
||||
import Tag from '@/components/ui/Tag';
|
||||
import Card from '@/components/ui/Card';
|
||||
import Button from '@/components/ui/Button';
|
||||
import { Calendar, Music, Beer } from 'lucide-react';
|
||||
|
||||
export default function EventsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div data-webild-section="events" className="bg-background">
|
||||
<div className="container mx-auto px-4">
|
||||
<div className="text-center">
|
||||
<Tag text="Upcoming Events" className="mb-4" />
|
||||
<h2 className="text-4xl md:text-5xl font-bold text-foreground mb-6">Join the Community</h2>
|
||||
<p className="text-lg text-muted-foreground max-w-content-width mx-auto">
|
||||
From live music to special beer releases, there's always something happening at Cedar Mountain Brewery.
|
||||
</p>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<Card className="p-6 flex flex-col h-full">
|
||||
<div className="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center mb-6 text-primary">
|
||||
<Music className="w-6 h-6" />
|
||||
</div>
|
||||
<h3 className="text-xl font-bold text-foreground mb-2">Live Music Fridays</h3>
|
||||
<p className="text-sm text-muted-foreground mb-4">Every Friday, 7 PM - 10 PM</p>
|
||||
<p className="text-muted-foreground flex-grow mb-6">Kick off your weekend with local bands, great beer, and a lively atmosphere in our taproom.</p>
|
||||
<Button text="View Lineup" variant="secondary" className="w-full" />
|
||||
</Card>
|
||||
<Card className="p-6 flex flex-col h-full">
|
||||
<div className="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center mb-6 text-primary">
|
||||
<Beer className="w-6 h-6" />
|
||||
</div>
|
||||
<h3 className="text-xl font-bold text-foreground mb-2">Seasonal Release Party</h3>
|
||||
<p className="text-sm text-muted-foreground mb-4">October 15th, 12 PM - 8 PM</p>
|
||||
<p className="text-muted-foreground flex-grow mb-6">Be the first to taste our new Winter Stout. Food trucks, games, and exclusive merchandise available.</p>
|
||||
<Button text="RSVP Now" variant="secondary" className="w-full" />
|
||||
</Card>
|
||||
<Card className="p-6 flex flex-col h-full">
|
||||
<div className="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center mb-6 text-primary">
|
||||
<Calendar className="w-6 h-6" />
|
||||
</div>
|
||||
<h3 className="text-xl font-bold text-foreground mb-2">Brewery Tours</h3>
|
||||
<p className="text-sm text-muted-foreground mb-4">Saturdays & Sundays, 2 PM</p>
|
||||
<p className="text-muted-foreground flex-grow mb-6">Get a behind-the-scenes look at our brewing process and enjoy a guided tasting of our core lineup.</p>
|
||||
<Button text="Book a Tour" variant="secondary" className="w-full" />
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user