36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
// AUTO-GENERATED shell by per-section-migrate.
|
|
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
|
// files directly; this shell only fixes render order.
|
|
|
|
import React from 'react';
|
|
import HomeSection from './HomePage/sections/Home';
|
|
import BeersSection from './HomePage/sections/Beers';
|
|
import StorySection from './HomePage/sections/Story';
|
|
import TaproomSection from './HomePage/sections/Taproom';
|
|
import TestimonialQuoteCardsSection from './HomePage/sections/TestimonialQuoteCards';
|
|
import FaqSimpleSection from './HomePage/sections/FaqSimple';
|
|
import ContactSection from './HomePage/sections/Contact';
|
|
|
|
|
|
|
|
|
|
{/* 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 */}
|
|
|
|
export default function HomePage(): React.JSX.Element {
|
|
return (
|
|
<>
|
|
<HomeSection />
|
|
<BeersSection />
|
|
<StorySection />
|
|
<TaproomSection />
|
|
<TestimonialQuoteCardsSection />
|
|
<FaqSimpleSection />
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|