https://github.com/tuckerbwieland/11ty_portfolio
Minimal Eleventy portfolio with accessibility and performance focus
https://github.com/tuckerbwieland/11ty_portfolio
11ty 11ty-eleventy 11ty-template personal-website profolio
Last synced: about 1 month ago
JSON representation
Minimal Eleventy portfolio with accessibility and performance focus
- Host: GitHub
- URL: https://github.com/tuckerbwieland/11ty_portfolio
- Owner: TuckerBWieland
- Created: 2025-08-10T18:11:32.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-09-03T16:51:12.000Z (about 1 month ago)
- Last Synced: 2025-09-03T18:39:09.961Z (about 1 month ago)
- Topics: 11ty, 11ty-eleventy, 11ty-template, personal-website, profolio
- Language: TypeScript
- Homepage: https://tuckerwieland.com/
- Size: 13.7 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tucker Wieland Portfolio
Professional portfolio website built with Eleventy, Tailwind CSS, and
TypeScript.## Quick Start
```bash
# Install dependencies
npm install# Start development server
npm run dev
```Visit `http://localhost:8080` - the site auto-reloads on changes.
## Commands
```bash
npm run dev # Development server with hot reload
npm run build # Production build
npm run lint # Run all linters
npm run lint:fix # Fix linting issues
```## Tech Stack
- **Static Site Generator**: Eleventy 3.1.2
- **CSS Framework**: Tailwind CSS 3.4.0 with custom design tokens
- **TypeScript**: Component logic with type safety
- **Templates**: Nunjucks components## Project Structure
```
src/
├── _data/ # Content (JSON)
├── _includes/ # Templates & components
├── css/ # Styles
├── js/ # TypeScript components
└── static/ # Assets
```## Adding Content
**New Project**: Edit `src/_data/projects.json`
**New Company**: Edit `src/_data/companies.json` + add logo to
`src/static/company-logos/`
**New Section**: Create component in `src/_includes/components/` + include in
`src/index.njk`## Development Guide
See `CODING_GUIDE.md` for comprehensive development patterns, design system, and
component architecture.---
Built with modern web standards and systematic design principles.