Minimal, blazing fast, and designed with developers in mind, v4.20 is your go-to starting point for modern web projects.
- Nuxt 3 for powerful, streamlined development.
- Nuxt UI v3 for customizable and sleek UI components.
- Pinia for state management simplicity.
- Tailwind CSS v4 for responsive and modern design.
- Fully compatible with the Nuxt v4 folder structure, this template ensures you're ready for the future of web development.
Get started today with v4.20 and build faster, smarter, and better!
- Nuxt 3
- Pinia for state management
- Tailwind CSS for styling
- Dark mode support
- Primary color switcher
- SEO meta tags
- Responsive design
- Node.js (>= 14.x)
- npm or yarn
-
Clone the repository:
git clone https://github.com/{username}/v420.git cd v420
-
Install dependencies:
npm install # or yarn install
Start the development server:
npm run dev
# or
yarn dev
The application will be available at http://localhost:3000
.
To build the project for production:
npm run build
# or
yarn build
After building the project, you can deploy the dist
directory to your preferred hosting service.
nuxt.config.ts
: Nuxt configuration file.app/
: Contains the main application files.components/
: Vue components.layouts/
: Layout components.pages/
: Page components.stores/
: Pinia stores.assets/css/
: CSS files.
public/
: Static assets.
This project uses Pinia for state management. Example store:
export const useIndexStore = defineStore('useIndexStore', {
state: () => ({
name: ''
}),
})
if (import.meta.hot) {
import.meta.hot.accept(acceptHMRUpdate(useIndexStore, import.meta.hot))
}
AppLogo
: Displays the application logo.AppSwitchMode
: Toggles between dark and light mode.AppSwitchPrimaryColor
: Switches the primary color theme.
index.vue
: The main landing page.about.vue
: The about page.
default.vue
: The default layout for the application.
Contributions are welcome! Please open an issue or submit a pull request for any changes.
This project is licensed under the MIT License.