Skip to content

Latest commit

 

History

History
44 lines (39 loc) · 1.7 KB

README.md

File metadata and controls

44 lines (39 loc) · 1.7 KB

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.