My personal website built with SvelteKit, featuring a monospace-first design approach and modern web development practices.
Visit the website at https://jonesrussell.github.io/me/
src/
├── lib/
│ ├── components/ # Reusable components
│ │ ├── Grid.svelte # Monospace grid system
│ │ ├── Terminal.svelte # Terminal interface
│ │ └── ...
│ ├── utils/
│ │ ├── grid.ts # Grid alignment utilities
│ │ └── ...
│ └── stores/
│ ├── terminal.ts # Terminal state management
│ └── ...
├── routes/ # SvelteKit routes
└── app.css # Global CSS variables
docs/
├── CONTRIBUTING.md # Contribution guidelines
└── TESTING.md # Testing procedures
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
# Preview production build
npm run preview
# Run tests
npm run test
The project uses a character-based grid system for precise layouts:
<Grid cols={2} gap={2}>
<div>Perfectly</div>
<div>Aligned</div>
</Grid>
Grid utilities ensure proper alignment:
import { alignToGrid, toCharUnit } from '$lib/utils/grid';
const width = toCharUnit(alignToGrid(40)); // "40ch"
Interactive terminal interface for command demonstrations:
const commands = [
{
cmd: 'echo "Hello"',
output: 'Hello'
}
];
terminal.loadCommands(commands);
See CONTRIBUTING.md for guidelines on:
MIT - see LICENSE