Skip to content

tookender/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

website ๐ŸŒ

A website built with Next.js bootstrapped with create-next-app.
It uses NextUI for awesome components and Recharts for custom graphs.
Primarily for showcasing my projects and my portfolio.

installing & running ๐Ÿ“ฉ

I don't recommend you running it yourself, you can visit a live demo of the website at korino.dev, but here is the guide anyways: 0. Make sure you have installed Node.js

using npm
  1. Install all the requirements with: npm i
  2. Run a live development server: npm run dev
using yarn
  1. Install all the requirements with: yarn i
  2. Run a live development server: yarn dev
using pnpm
  1. Install all the requirements with: pnpm i
  2. Run a live development server: pnpm dev
using bun
  1. Install all the requirements with: bun i
  2. Run a live development server: bun run dev

โ€‹3. Open localhost:3000 in your browser to see the page live. If you update any file, for example pages/index.tsx, it will automatically update in the browser.