visit on web
Built using the creative power of next.js. Forever an experiment while playing with next.js new features.
Using Next.js is a popular open-source React framework for building web applications. It's designed to simplify the development of modern web applications by providing a set of features and conventions that make it easier to create performant and SEO-friendly websites. Next.js builds upon React and adds server-side rendering, routing, and other useful features, making it a powerful choice for both server-rendered and client-rendered applications. I find it blazingly fast while exciting to work with and a remarkable upgrade to Node.js applications.
Route (app) Size First Load JS
┌ ○ / 0 B 0 B
├ ○ /about 3.12 kB 99.3 kB
├ λ /about/[...catchAll] 257 B 80.5 kB
├ ℇ /api/categories 0 B 0 B
├ ℇ /api/products 0 B 0 B
├ ℇ /api/reviews 0 B 0 B
├ λ /api/todos 0 B 0 B
├ λ /api/todos/[id] 0 B 0 B
├ λ /dashboard 1.76 kB 89.1 kB
├ ○ /dashboard/blog 256 B 80.5 kB
├ λ /dashboard/categories 257 B 80.5 kB
├ λ /dashboard/categories/[categorySlug] 410 B 80.7 kB
├ λ /dashboard/categories/[categorySlug]/[subCategorySlug] 410 B 80.7 kB
├ ○ /dashboard/todo/add 1.19 kB 81.5 kB
├ λ /dashboard/todo/edit/[id] 2.52 kB 83.8 kB
├ ○ /dashboard/users 256 B 80.5 kB
├ λ /dashboard/users/all 2.05 kB 89.4 kB
├ ○ /dashboard/users/create 1.95 kB 109 kB
├ λ /dashboard/users/edit/[id] 2.64 kB 103 kB
├ ○ /dashboard/users/find 255 B 80.5 kB
├ λ /dashboard/users/password/[id] 2.72 kB 103 kB
├ ○ /dashboard/walks 256 B 80.5 kB
├ ○ /dashboard/walks/all 257 B 80.5 kB
├ ○ /dashboard/walks/create 257 B 80.5 kB
├ ○ /dashboard/walks/edit 257 B 80.5 kB
├ ○ /dashboard/walks/find 257 B 80.5 kB
├ ○ /login 2.68 kB 105 kB
├ ○ /map 48.2 kB 166 kB
├ ○ /shop 1.67 kB 82.9 kB
├ λ /shop/jackets/product/[id] 846 B 91.9 kB
├ ℇ /shop/shoes/product/[id] 846 B 91.9 kB
├ ○ /walks 2.41 kB 98.6 kB
└ ○ /welcome 1.14 kB 88.5 kB
+ First Load JS shared by all 80.3 kB
├ chunks/5801-cd7810c388c333ae.js 25.5 kB
├ chunks/87bc1fd9-bceb7c2abd483be2.js 52.7 kB
├ chunks/main-app-b86978e9d0273795.js 220 B
└ chunks/webpack-9d458e64937ab78a.js 1.86 kB
Route (pages) Size First Load JS
┌ ○ /404 184 B 75.2 kB
├ λ /api/logs 0 B 75 kB
├ λ /api/users 0 B 75 kB
├ λ /api/users/[id] 0 B 75 kB
├ λ /api/users/auth 0 B 75 kB
├ λ /api/users/auth1 0 B 75 kB
└ λ /api/users/password/[id] 0 B 75 kB
+ First Load JS shared by all 75 kB
├ chunks/framework-964c2d6016b0d731.js 45 kB
├ chunks/main-7e26064d493ef3b0.js 27.9 kB
├ chunks/pages/_app-0e3f4a58b0e17b39.js 197 B
└ chunks/webpack-9d458e64937ab78a.js 1.86 kB
ƒ Middleware 42 kB
ℇ (Streaming) server-side renders with streaming (uses React 18 SSR streaming or Server Components)
λ (Server) server-side renders at runtime (uses getInitialProps or getServerSideProps)
○ (Static) automatically rendered as static HTML (uses no initial props)```
Built with next.js and forever an experiment while developing with next.js new features.