this repo has no description
0
fork

Configure Feed

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

stufososjsa

-62
-1
package.json
··· 36 36 "valibot": "^1.3.1" 37 37 }, 38 38 "devDependencies": { 39 - "1password-cli": "^0.2.1", 40 39 "@netlify/vite-plugin-tanstack-start": "^1.3.3", 41 40 "@types/node": "^25.6.0", 42 41 "@types/react": "^19.2.14",
-8
pnpm-lock.yaml
··· 76 76 specifier: ^1.3.1 77 77 version: 1.3.1(typescript@6.0.2) 78 78 devDependencies: 79 - 1password-cli: 80 - specifier: ^0.2.1 81 - version: 0.2.1 82 79 '@netlify/vite-plugin-tanstack-start': 83 80 specifier: ^1.3.3 84 81 version: 1.3.3(@azure/identity@4.13.1)(@tanstack/react-start@1.167.28(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.6.0)(jiti@2.6.1)(tsx@4.21.0)(typescript@6.0.2)(yaml@2.8.3))(crossws@0.4.5(srvx@0.11.15))(react-dom@19.2.5(react@19.2.5))(react@19.2.5))(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.6.0)(jiti@2.6.1)(tsx@4.21.0)(typescript@6.0.2)(yaml@2.8.3))(srvx@0.11.15) ··· 114 111 version: 0.1.16(@opentelemetry/api@1.9.0)(@types/node@25.6.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.6.0)(jiti@2.6.1)(tsx@4.21.0)(typescript@6.0.2)(yaml@2.8.3))(jiti@2.6.1)(tsx@4.21.0)(typescript@6.0.2)(yaml@2.8.3) 115 112 116 113 packages: 117 - 118 - 1password-cli@0.2.1: 119 - resolution: {integrity: sha512-QbMOSwST2iAi5zfzCfYy3aBIaiGREyGfEb8MMqUNwWsdBfoRaxYE4Fz38MoKkwLCIXkAqR5ldcoKAzHzDvllVQ==} 120 114 121 115 '@azure-rest/core-client@2.6.0': 122 116 resolution: {integrity: sha512-iuFKDm8XPzNxPfRjhyU5/xKZmcRDzSuEghXDHHk4MjBV/wFL34GmYVBZnn9wmuoLBeS1qAw9ceMdaeJBPcB1QQ==} ··· 5238 5232 resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} 5239 5233 5240 5234 snapshots: 5241 - 5242 - 1password-cli@0.2.1: {} 5243 5235 5244 5236 '@azure-rest/core-client@2.6.0': 5245 5237 dependencies:
-53
src/routes/index.tsx
··· 108 108 </div> 109 109 </section> 110 110 111 - {/* Examples Grid */} 112 - <section className="max-w-5xl mx-auto px-6 py-12"> 113 - <div className="flex items-center gap-3 py-3 border-b border-(--border-default) mb-4"> 114 - <span className="text-base font-semibold uppercase tracking-wider text-(--text-secondary) font-mono"> 115 - Examples 116 - </span> 117 - <span className="text-(--text-muted) text-sm font-mono">// Select one to explore</span> 118 - </div> 119 - 120 - <div className="grid grid-cols-1 md:grid-cols-2 gap-4"> 121 - {examples.map((example) => ( 122 - <ExampleItem key={example.number} {...example} /> 123 - ))} 124 - </div> 125 - </section> 126 - 127 - {/* Concepts Section */} 128 - <section className="max-w-5xl mx-auto px-6 pb-16"> 129 - <div className="flex items-center gap-3 py-3 border-b border-(--border-default) mb-4"> 130 - <span className="text-base font-semibold uppercase tracking-wider text-(--text-secondary) font-mono"> 131 - Key Concepts 132 - </span> 133 - </div> 134 - 135 - <ConsoleCard> 136 - <div className="grid grid-cols-1 md:grid-cols-3 gap-8"> 137 - <div> 138 - <h4 className="font-mono font-semibold text-(--text-primary) mb-2">Route Loaders</h4> 139 - <p className="text-sm text-(--text-secondary) leading-relaxed"> 140 - Loaders run before the route component renders, making them ideal for initiating 141 - data fetches early in the navigation lifecycle. 142 - </p> 143 - </div> 144 - <div> 145 - <h4 className="font-mono font-semibold text-(--text-primary) mb-2"> 146 - Intent Preloading 147 - </h4> 148 - <p className="text-sm text-(--text-secondary) leading-relaxed"> 149 - By observing user intent (hover, focus), we can predict navigation and preload data 150 - before the click event fires. 151 - </p> 152 - </div> 153 - <div> 154 - <h4 className="font-mono font-semibold text-(--text-primary) mb-2">Query Caching</h4> 155 - <p className="text-sm text-(--text-secondary) leading-relaxed"> 156 - TanStack Query maintains a cache of fetched data. Subsequent requests for the same 157 - data return instantly from cache. 158 - </p> 159 - </div> 160 - </div> 161 - </ConsoleCard> 162 - </section> 163 - 164 111 {/* Footer */} 165 112 <footer className="border-t border-(--border-default) bg-(--bg-card)"> 166 113 <div className="max-w-5xl mx-auto px-6 py-6 text-sm text-(--text-muted)">