// sections-top.jsx — Nav, Hero, Marquee, Pillars, ProductShowcase
const { useState, useEffect, useRef } = React;
// ─────────────────────────────────────────────────────────────────────────────
// Logo mark — circular badge style matching the brand logo
function LogoMark({ size = 36 }) {
return (
Real Date Bar
);
}
// ─────────────────────────────────────────────────────────────────────────────
function Nav({ onOrder }) {
const [scrolled, setScrolled] = useState(false);
useEffect(() => {
const on = () => setScrolled(window.scrollY > 24);
window.addEventListener('scroll', on, { passive: true });
return () => window.removeEventListener('scroll', on);
}, []);
const links = [
['The Bar', '#product'],
['Why', '#why'],
['Nutrition', '#nutrition'],
['Pricing', '#pricing'],
['Pickup', '#pickup'],
['Reviews', '#reviews'],
['Founder', '#founder'],
];
return (
);
}
// ─────────────────────────────────────────────────────────────────────────────
// Product bar placeholder — a stylized SVG of the actual bar shape
function BarShot({ aspect = '1', label = 'PRODUCT SHOT · 600×800' }) {
return (
{label}
{/* Stylized bar silhouette */}
);
}
// ─────────────────────────────────────────────────────────────────────────────
function Hero({ variant = 'editorial', eyebrowStyle = 'mono' }) {
// 'editorial' — split layout w/ huge serif headline left, product right
// 'split' — dark block left like reference inspiration, cream right
// 'centered' — centered headline with product floating below
if (variant === 'centered') {
return (
Frisco, TX · Est. 2026
Real fuel. Two ingredients.
A filling, energizing date bar built for athletes who are tired of gels that don't keep them full. Organic dates. Organic cashews. Nothing else.
);
}
// ─────────────────────────────────────────────────────────────────────────────
function Pillars() {
const items = [
{ n: '02', label: 'Ingredients', body: 'Organic dates and organic cashews. Read the back of an energy gel sometime — we did, and we got mad.' },
{ n: '00', label: 'Fillers', body: 'No syrups, no maltodextrin, no preservatives, no mystery powders. Real food that travels well.' },
{ n: '01', label: 'Founder', body: 'Made by a competitive swimmer who needed something to give her energy and keep her full.' },
];
return (
{items.map((it, i) => (
{it.n}
{it.label}
{it.body}
))}
);
}
// ─────────────────────────────────────────────────────────────────────────────
function ProductShowcase() {
return (
The Bar
One bar. That's the menu.
We focused on getting one thing perfect before adding anything else. A dense, soft, chewy bar made by hand — every bite is dates and cashews and nothing else.