Skip to content

Latest commit

 

History

History

README.md

Fleet of Fortune - Client

This is the frontend client for Fleet of Fortune, built with modern web technologies.

Tech Stack

Getting Started

  1. Install Bun if you haven't already:

    curl -fsSL https://bun.sh/install | bash
  2. Install dependencies:

    bun install
  3. Start the development server:

    bun run dev
  4. Open your browser and navigate to http://localhost:5173

Development Notes

  • We use Svelte v5 with the new runes system ($state, $props)
  • TypeScript is strictly enforced - all props must have explicit interfaces
  • Use Tailwind CSS for styling (avoid <style> tags)
  • Use Svelte snippets for code reuse:
    {#snippet componentName(props)}
      <!-- Component content -->
    {/snippet}
    
    {@render componentName(props)}