Astro-based marketing site for BeemFlow.
npm install
npm run devnpm run dev- Start local dev server.npm run build- Build production assets indist/.npm run preview- Preview the production build locally.npm run astro- Run Astro CLI commands.
src/
components/ Reusable section and UI components
data/ Typed content objects used by sections
layouts/ Shared page layout and metadata
pages/ Route entry points
styles/ Global design tokens and utilities
- Prefer updating copy in
src/data/content.tsover hardcoding text in components. - Keep shared UI patterns in
src/styles/global.css(tokens, utilities). - Use component-level styles for section-specific rules.