├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── src ├── app.css ├── app.html ├── components │ ├── meta.svelte │ └── video.svelte ├── global.d.ts ├── lib │ └── renderers.ts └── routes │ ├── __layout.svelte │ └── index.svelte ├── static ├── bart.jpg ├── bart_ed.pdf ├── favicon.png └── robots.txt ├── svelte.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🏡 website 2 | 3 | My personal site! 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/package.json -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/meta.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/src/components/meta.svelte -------------------------------------------------------------------------------- /src/components/video.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/src/components/video.svelte -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/lib/renderers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/src/lib/renderers.ts -------------------------------------------------------------------------------- /src/routes/__layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/src/routes/__layout.svelte -------------------------------------------------------------------------------- /src/routes/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/src/routes/index.svelte -------------------------------------------------------------------------------- /static/bart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/static/bart.jpg -------------------------------------------------------------------------------- /static/bart_ed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/static/bart_ed.pdf -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/static/robots.txt -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sampoder/website/HEAD/tsconfig.json --------------------------------------------------------------------------------