├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public ├── 68747470733a2f2f6e616e6f73746f7265732e6769746875622e696f2f6e616e6f73746f7265732f6c6f676f2e737667.svg ├── corgi-pal.png ├── favicon.svg ├── pokeball.png ├── rubber-corgi.png └── tanstack.png ├── sandbox.config.json ├── src ├── api │ └── pokemon.ts ├── components │ ├── nanostores │ │ ├── ReactCounter.tsx │ │ ├── SolidCounter.tsx │ │ └── store.ts │ ├── pokedex-complete │ │ ├── ReactPicture.tsx │ │ ├── SolidStats.tsx │ │ ├── Svelte.svelte │ │ ├── SvelteDetails.svelte │ │ ├── VueEvolution.vue │ │ ├── ignore │ │ │ ├── Background.tsx │ │ │ └── PokedexHeader.tsx │ │ └── store.ts │ ├── pokedex │ │ ├── ReactPicture.tsx │ │ ├── SolidStats.tsx │ │ ├── Svelte.svelte │ │ ├── SvelteDetails.svelte │ │ ├── VueEvolution.vue │ │ ├── ignore │ │ │ ├── Background.tsx │ │ │ └── PokedexHeader.tsx │ │ └── store.ts │ └── ssr │ │ ├── Devtools.tsx │ │ ├── SSRName.tsx │ │ ├── SSRStats.tsx │ │ └── store.ts ├── env.d.ts ├── pages │ ├── index.astro │ ├── nanostores.astro │ ├── pokedex-complete.astro │ ├── pokedex.astro │ └── ssr.astro ├── styles │ └── global.css └── utils │ └── fns.ts ├── tailwind.config.cjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/68747470733a2f2f6e616e6f73746f7265732e6769746875622e696f2f6e616e6f73746f7265732f6c6f676f2e737667.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/public/68747470733a2f2f6e616e6f73746f7265732e6769746875622e696f2f6e616e6f73746f7265732f6c6f676f2e737667.svg -------------------------------------------------------------------------------- /public/corgi-pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/public/corgi-pal.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/pokeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/public/pokeball.png -------------------------------------------------------------------------------- /public/rubber-corgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/public/rubber-corgi.png -------------------------------------------------------------------------------- /public/tanstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/public/tanstack.png -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /src/api/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/api/pokemon.ts -------------------------------------------------------------------------------- /src/components/nanostores/ReactCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/nanostores/ReactCounter.tsx -------------------------------------------------------------------------------- /src/components/nanostores/SolidCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/nanostores/SolidCounter.tsx -------------------------------------------------------------------------------- /src/components/nanostores/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/nanostores/store.ts -------------------------------------------------------------------------------- /src/components/pokedex-complete/ReactPicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/ReactPicture.tsx -------------------------------------------------------------------------------- /src/components/pokedex-complete/SolidStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/SolidStats.tsx -------------------------------------------------------------------------------- /src/components/pokedex-complete/Svelte.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/Svelte.svelte -------------------------------------------------------------------------------- /src/components/pokedex-complete/SvelteDetails.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/SvelteDetails.svelte -------------------------------------------------------------------------------- /src/components/pokedex-complete/VueEvolution.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/VueEvolution.vue -------------------------------------------------------------------------------- /src/components/pokedex-complete/ignore/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/ignore/Background.tsx -------------------------------------------------------------------------------- /src/components/pokedex-complete/ignore/PokedexHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/ignore/PokedexHeader.tsx -------------------------------------------------------------------------------- /src/components/pokedex-complete/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex-complete/store.ts -------------------------------------------------------------------------------- /src/components/pokedex/ReactPicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/ReactPicture.tsx -------------------------------------------------------------------------------- /src/components/pokedex/SolidStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/SolidStats.tsx -------------------------------------------------------------------------------- /src/components/pokedex/Svelte.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/Svelte.svelte -------------------------------------------------------------------------------- /src/components/pokedex/SvelteDetails.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/SvelteDetails.svelte -------------------------------------------------------------------------------- /src/components/pokedex/VueEvolution.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/VueEvolution.vue -------------------------------------------------------------------------------- /src/components/pokedex/ignore/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/ignore/Background.tsx -------------------------------------------------------------------------------- /src/components/pokedex/ignore/PokedexHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/ignore/PokedexHeader.tsx -------------------------------------------------------------------------------- /src/components/pokedex/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/pokedex/store.ts -------------------------------------------------------------------------------- /src/components/ssr/Devtools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/ssr/Devtools.tsx -------------------------------------------------------------------------------- /src/components/ssr/SSRName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/ssr/SSRName.tsx -------------------------------------------------------------------------------- /src/components/ssr/SSRStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/ssr/SSRStats.tsx -------------------------------------------------------------------------------- /src/components/ssr/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/components/ssr/store.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/nanostores.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/pages/nanostores.astro -------------------------------------------------------------------------------- /src/pages/pokedex-complete.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/pages/pokedex-complete.astro -------------------------------------------------------------------------------- /src/pages/pokedex.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/pages/pokedex.astro -------------------------------------------------------------------------------- /src/pages/ssr.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/pages/ssr.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/utils/fns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/src/utils/fns.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardeora/astro-tanstack-lwj/HEAD/tsconfig.json --------------------------------------------------------------------------------