Skip to content

Compass-Detroit/iwdsummit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

International Women's Day Innovation Summit 2026

The website for the IWD Innovation Summit 2026. Built with Vite, React, and Tailwind CSS.

Organized by Compass Detroit in partnership with GDG Detroit and Women Techmakers.

Quick Start

Prerequisites

  • Node.js 18+
  • npm

Recommended VS Code Extensions

This project includes VS Code extension recommendations. When you open the project in VS Code, you'll be prompted to install:

  • ESLint (dbaeumer.vscode-eslint) — Code linting and Tailwind CSS class ordering
  • Prettier (esbenp.prettier-vscode) — Code formatting
  • Tailwind CSS IntelliSense (bradlc.vscode-tailwindcss) — Autocomplete and IntelliSense
  • axe Accessibility Linter (deque-systems.vscode-axe-linter) — Real-time accessibility linting

Installation

git clone <repo-url>
cd IWD-website-2026
npm install
npm run dev

Navigate to http://localhost:5173. Customize the port in vite.config.js if needed.

Theme Switcher

The site supports two color themes — Purple (default) and Blue. A floating palette button in the bottom-right lets visitors toggle between them.

Themes work via CSS custom properties defined in src/index.css. The iwd.gold and iwd.black Tailwind tokens reference these variables, so the entire site re-themes instantly with zero component changes.

  • Theme preference persists in localStorage
  • Context: src/components/ui/ThemeContext.jsx
  • Toggle UI: src/components/ui/ThemeSwitcher.jsx

Docker

This application can be containerized using Docker for easy deployment and consistent environments.

Prerequisites

  • Docker installed on your system
  • Basic understanding of Docker commands

Building the Docker Image

  1. Build the Docker image:
docker build -t iwd-website .
  1. Run the container:
docker run -p 3000:3000 iwd-website
  1. Open your browser and navigate to http://localhost:3000

Docker Commands

Command Description
docker build -t iwd-website . Build the Docker image
docker run -p 3000:3000 iwd-website Run the container on port 3000
docker run -d -p 3000:3000 --name iwd-app iwd-website Run container in detached mode with custom name
docker stop iwd-app Stop the running container
docker rm iwd-app Remove the container
docker images List all Docker images
docker rmi iwd-website Remove the Docker image

Environment Variables

Currently, no environment variables are required to run the application. The application uses static data and doesn't require external services.

Docker Features

  • Alpine Linux base: Lightweight and secure
  • Non-root user: Enhanced security by running as non-root user
  • Multi-stage optimization: Efficient image size
  • Production-ready: Uses Vite preview for serving the built application

Development Scripts

Command Description
npm run dev Start the development server via Vite
npm run build Build the project for production
npm run preview Create a preview of the production build locally
npm run lint Check code for linting errors (includes Tailwind class order)
npm run lint:fix Automatically fix linting errors
npm run format Format code with Prettier
npm run format:check Check code formatting with Prettier
npm run commitlint Validate commit message format

Project Structure

src/
├── assets/             # Images, fonts, and static assets
├── components/         # UI components
├── constants/          # Application constants
├── data/               # Static data and content (e.g. devs, facilitators, organizers, speakers, and sponsors - Contains multiple years)
├── layouts/            # Section layout components
└── pages/              # Page components

Development

Code Style

This project uses ESLint and Prettier for code quality and formatting:

  • Run npm run lint to check for linting issues
  • Run npm run format:check to check code formatting
  • Use npm run lint:fix and npm run format to automatically fix issues

Git Hooks

This project uses Husky and lint-staged to automatically enforce code quality:

  • Pre-commit hook - Automatically runs ESLint and Prettier on staged files before each commit
  • Automatic formatting - Code is automatically formatted and linted before commits
  • No manual intervention - The hooks will fix issues automatically when possible

How it works:

  1. When you run git commit, the pre-commit hook triggers
  2. lint-staged runs ESLint and Prettier on only the files you're committing
  3. If there are fixable issues, they're automatically resolved
  4. If there are unfixable issues, the commit is blocked until you fix them manually
  5. Once all issues are resolved, the commit proceeds

Conventional Commits

This project enforces the Conventional Commits specification for clear, consistent commit messages:

  • Commit-msg hook - Automatically validates commit message format before each commit
  • Consistent history - All commits follow a standardized format
  • Automation ready - Enables automated changelog generation and semantic versioning

Commit Message Format:

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]

Supported Types:

  • feat - A new feature
  • fix - A bug fix
  • docs - Documentation changes
  • style - Formatting, missing semicolons, etc.
  • refactor - Code change that neither fixes a bug nor adds a feature
  • test - Adding or correcting tests
  • chore - Maintenance
  • perf - Performance improvements
  • ci - CI/CD changes
  • build - Build system changes
  • revert - Revert a previous commit

Examples:

feat: add user authentication
fix: resolve memory leak in data processing
docs: update API documentation
style: fix code formatting issues
refactor: simplify user validation logic
test: add unit tests for payment module
chore: update dependencies

How it works:

  1. When you run git commit, the commit-msg hook triggers
  2. commitlint validates your commit message against the conventional format
  3. If the message is invalid, the commit is blocked with helpful error messages
  4. If the message is valid, the commit proceeds normally

Accessibility

This project prioritizes accessibility and uses several tools to ensure inclusive design:

  • VS Code axe Accessibility Linter - Real-time accessibility linting in the editor (when extension is installed)
  • ESLint Tailwind plugin - Detects class ordering issues for better maintainability
  • ResponsiveImage component - Provides proper alt text fallbacks and modern image formats
  • Semantic HTML - Uses proper heading hierarchy and landmark elements
  • Manual accessibility testing - Regular testing with browser accessibility tools

Accessibility Guidelines: This project follows WCAG 2.1 guidelines and includes proper ARIA labels, keyboard navigation support, and semantic HTML structure.

Note: If the axe Accessibility Linter extension is not available, you can use browser-based accessibility tools like:

Tailwind CSS Class Ordering

This project uses a manual class ordering approach for optimal control and reliability:

  1. ESLint Tailwind plugin detects when classes are out of order and shows warnings
  2. Developers manually fix the class order when warnings appear
  3. Follows official Tailwind CSS class order for consistency

Benefits of manual ordering:

  • Full control over class organization
  • No conflicts between different tools
  • Reliable across all file types (JSX, HTML, etc.)
  • Team consistency through ESLint warnings

Class order reference: Layout → Sizing → Spacing → Typography → Backgrounds → Effects → Transitions → Hover states

Why not use Prettier Tailwind plugin:

  • Layout breaking - Plugin reorders classes that break specific layouts
  • Inconsistent behavior - Plugin sometimes fails to sort classes properly
  • Version conflicts - Plugin compatibility issues with different Prettier versions
  • Debugging complexity - Hard to troubleshoot when sorting doesn't work as expected
  • Tool conflicts - Can interfere with other formatting rules
  • Manual control - Developers maintain full control over class organization

Building for Production

npm run build

The built files will be in the dist/ directory, ready for deployment.

Deployment

The site is deployed on Vercel and uses Vercel Analytics and Speed Insights. Deployment is triggered automatically when changes are merged to main via the GitHub integration.

Vercel configuration:

  • vercel.json – SPA rewrites so client-side routes (e.g. /past-events) resolve correctly
  • base: './' in Vite config – Output works with Vercel’s static hosting

To deploy manually (e.g. from a fork):

  1. Connect the repository to Vercel
  2. Use the default Vite preset (build command: npm run build, output directory: dist/)
  3. Deploy

Alternative: Use Docker for self-hosted deployments.

Issues

This project uses GitHub Issues & GitHub Projects in the Compass-Detroit/IWD-website-2026 repository for tracking development. Please create an issue if you encounter any problems or have suggestions for improvements.

Pull Requests

Please submit a pull request for any changes you'd like to make.

About

Website for International Women's Day Summit 2026 in Detroit, Mi presented by Compass Detroit

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages