// Stray Cats Ice Cream — full responsive single-page site (Direction A: Playful & Bold). // Uses the shared brand kit (sc-brand.jsx) for palette, fonts and SVG marks. // Layout/responsiveness is driven by classes in the host stylesheet. const MENU = [ { t: 'Soft Serve', d: 'Vanilla · Chocolate · Twist. Cup or waffle cone, dipped on request.', p: '$4.50 / $5.50', c: '#FBF3E0' }, { t: 'Hand-Dipped Scoops', d: 'Eight flavours in rotation. Single, double, or a flight of three.', p: '$4 / $6 / $8', c: '#E68AA0' }, { t: 'Slush', d: 'Blue raspberry, cherry, mango. The cool-down classic.', p: '$3.50', c: '#8A9BD0' }, { t: 'Sundaes & Floats', d: 'Stacked, sauced, sprinkled. Root-beer floats too.', p: '$6.50', c: '#C68A4A' }, ]; const NAV = [ { label: 'Menu', href: '#menu' }, { label: 'Mission', href: '#mission' }, { label: 'Find Us', href: '#find' }, ]; const SOCIAL = [ { label: 'Instagram', href: 'https://www.instagram.com/straycatsicecream/', icon: 'ig' }, { label: 'Facebook', href: 'https://www.facebook.com/straycatsicecream', icon: 'fb' }, { label: 'TikTok (coming soon)', href: null, icon: 'tt' }, ]; function SocialIcon({ icon }) { if (icon === 'ig') return ( ); if (icon === 'fb') return ( ); return ( ); } function PinIcon({ size = 15 }) { return ( ); } function ClockIcon() { return ( ); } function PhoneIcon({ size = 15 }) { return ( ); } const PHONE_DISPLAY = '(639) 383-4669'; const PHONE_TEL = '+16393834669'; const MAP_URL = 'https://www.google.com/maps/search/?api=1&query=50.478139,-104.607172'; function Site() { const [open, setOpen] = React.useState(false); const [joined, setJoined] = React.useState(false); const onJoin = (e) => { e.preventDefault(); setJoined(true); }; return (
{/* ── TOP BAR ── */}
190 Broad Street {PHONE_DISPLAY} Open daily · 11am – 8pm
{SOCIAL.map((s) => s.href ? ( ) : ( ))}
{/* ── NAV ── */} {/* ── HERO ── */}
Supporting local cat rescue

Scoops
for a cause

A little dessert every day — served out of a cream shipping container, with a portion of every scoop going to stray cats in the neighbourhood.

{/* ── MARQUEE ── */} {/* ── MENU ── */} {/* ── FLAVOUR WALL ── */}

Today's Scoops

flavours rotate weekly!
{FLAVOURS.map((f, i) => (
{f.name}
))}
{/* ── MISSION ── */}
why we're here

Eat ice cream.
Help cats.

Stray Cats is youth-led and community-focused. A portion of every order helps fund food, fostering, and vet care for stray and rescue cats nearby — while giving local young people their first job and a reason to smile behind the window.

Every scoop
helps
A portion of every order goes to support local cat rescue
{/* ── FIND US ── */}

Find the
container

190 Broad Street
Regina, SK · Look for the cream container with the cat
{PHONE_DISPLAY}
Tap to call — questions, catering & events
7
Open Every Day
11:00 am – 8:00 pm · Monday to Sunday
{/* ── EMAIL ── */}

Get the scoop

Flavour drops & where we're parked, straight to your inbox.

{joined ? (
Thanks! You're on the list. 🐾
) : (
)}
{/* ── FOOTER ── */}
); } window.Site = Site;