Skip to content

Commit

Permalink
docs: add branded README
Browse files Browse the repository at this point in the history
  • Loading branch information
rileychh committed Sep 16, 2024
1 parent 825e4b6 commit 14c3fe3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 44 deletions.
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@
"postcss"
],

// Markdownlint
"markdownlint.config": {
"first-line-h1": false,
"no-inline-html": false
},

// Use the workspace version of TypeScript
"typescript.tsdk": "node_modules/typescript/lib"
}
59 changes: 15 additions & 44 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,75 +1,46 @@
# Nuxt 3 Minimal Starter
<p align="center">
<img src="public/icon.svg" alt="NPC Logo" align="center" width="128" height="128">
</p>

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
<h1 align="center">Website</h1>

<p align="center">The front page of NPC: Crafted with Nuxt, powered by passion</p>

<p align="center">
<a href="https://ntut.club">
<img
alt="An NPC Project"
src="https://img.shields.io/badge/An_NPC_Project-black?logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0iI2ZmZiI%2BPHBhdGggZD0iTTQgNHYyNGw4LTggMTYgOFY0bC04IDh6Ii8%2BPC9zdmc%2B"
>
</a>
</p>

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.

0 comments on commit 14c3fe3

Please sign in to comment.