my website at ewancroft.uk
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add Work to navigation

+3 -2
+1 -1
README.md
··· 2 2 3 3 Personal website powered by AT Protocol, built with SvelteKit 2 and Tailwind CSS 4. 4 4 5 - **Version**: 11.7.2 5 + **Version**: 11.7.3 6 6 7 7 Live at [ewancroft.uk](https://ewancroft.uk). 8 8
+1 -1
package.json
··· 1 1 { 2 2 "name": "website", 3 3 "private": true, 4 - "version": "11.7.2", 4 + "version": "11.7.3", 5 5 "type": "module", 6 6 "scripts": { 7 7 "dev": "vite dev",
+1
src/lib/data/navItems.ts
··· 4 4 5 5 export const navItems: NavItem[] = [ 6 6 { href: '/', label: 'Home', iconPath: 'Home' }, 7 + { href: '/work', label: 'Work', iconPath: 'Briefcase' }, 7 8 { href: '/site/meta', label: 'Site Meta', iconPath: 'Info' }, 8 9 { href: '/github', label: 'GitHub', iconPath: 'Github' }, 9 10 { href: '/archive', label: 'Archive', iconPath: 'Archive' }