Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jonathancaleb/caleb.io

Welcome to my portfolio! 🚀 Explore my blog 📚, projects 💡, and journey in Android development 🎵
https://github.com/jonathancaleb/caleb.io

nextjs portfolio vercel

Last synced: about 2 months ago
JSON representation

Welcome to my portfolio! 🚀 Explore my blog 📚, projects 💡, and journey in Android development 🎵

Awesome Lists containing this project

README

        

# Minimal Next Starter

> An opinionated, super minimal Next.js starter template, alternative to `create-next-app`'s template.

## Features

- ⚡️ Super fast lint / formatting with [Biome](https://biomejs.dev).
- 🌚 Dark mode support with [Next Themes](https://github.com/pacocoursey/next-themes).
- ⭐️ Full ESM setup.
- 🔐 Strict TypeScript configuration.
- ✍️ Geist Font pre-configured.
- ✨ Pre-configured with GitHub Actions for CI.
- 💅 Tailwind plugins like `typography` and `aspect-ratio` pre-installed.

The aim of this starter is to provide a super bare-bones setup for Next.js with all of the necessary things that you might need to get started with a new project.

## Getting Started

```bash
# Create a new Next.js project using the starter
bunx create-next-app -e https://github.com/ixahmedxi/next-minimal-starter

# Navigate into the project
cd

# Install dependencies
bun install

# Run the app
bun dev

# Build the app
bun run build

# Lint
bun check

# Typecheck
bun typecheck
```