├── .gitignore ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── favicon.svg └── og.png ├── src ├── env.d.ts ├── icons │ ├── favicon.svg │ ├── github.svg │ ├── landscape.svg │ ├── multi.svg │ ├── portrait.svg │ ├── single.svg │ └── wind.svg ├── pages │ ├── index.astro │ └── test │ │ └── index.astro └── scripts │ └── magic.js ├── tailwind.config.cjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | dist 4 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/public/og.png -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/icons/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/icons/favicon.svg -------------------------------------------------------------------------------- /src/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/icons/github.svg -------------------------------------------------------------------------------- /src/icons/landscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/icons/landscape.svg -------------------------------------------------------------------------------- /src/icons/multi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/icons/multi.svg -------------------------------------------------------------------------------- /src/icons/portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/icons/portrait.svg -------------------------------------------------------------------------------- /src/icons/single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/icons/single.svg -------------------------------------------------------------------------------- /src/icons/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/icons/wind.svg -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/test/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/pages/test/index.astro -------------------------------------------------------------------------------- /src/scripts/magic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/src/scripts/magic.js -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntToDouble/winded/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/base" 3 | } 4 | --------------------------------------------------------------------------------