Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 🎵
- Host: GitHub
- URL: https://github.com/jonathancaleb/caleb.io
- Owner: jonathancaleb
- Created: 2024-06-30T12:36:05.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-30T12:40:50.000Z (7 months ago)
- Last Synced: 2024-07-02T18:13:09.262Z (7 months ago)
- Topics: nextjs, portfolio, vercel
- Language: TypeScript
- Homepage: https://caleb-io.vercel.app
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```