Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
42 changes: 28 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,48 @@
# <a href="https://modernize-nextjs-free.vercel.app/?ref=5">Modernize-nextjs-free</a>
Modernize Free Next.js 14 Admin Template with Material Ui + Typescript
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/adminmart/Modernize-Nextjs-Free" data-color-scheme="no-preference: light; light: light; dark: dark;" data-icon="octicon-star" data-size="large" aria-label="Star adminmart/Modernize-Nextjs-Free on GitHub">Give a Star</a>
<!-- Main image of Template -->
# Email Insights App with Modernize Admin Dashboard

<img src="https://adminmart.com/wp-content/uploads/2023/03/modernize-free-next-js-admin-template.png" />
This project combines a Next.js application with the Modernize Admin Dashboard template.

## About This Project

This is a [Next.js](https://nextjs.org) project using the [Modernize Admin Dashboard](https://modernize-nextjs-free.vercel.app/?ref=5) template, featuring Material UI and TypeScript.

# Installation 👨🏻‍💻
![Modernize Admin Dashboard](https://adminmart.com/wp-content/uploads/2023/03/modernize-free-next-js-admin-template.png)

> We recommend you use npm
## Getting Started

1. Install all packages
First, install all dependencies:

```
```bash
npm i
```

2. Run Development Server
Then, run the development server:

```
```bash
npm run dev
```

3. Build your project
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

```
You can start editing the pages by modifying files in the `src` directory. The pages auto-update as you edit the files.

## Build for Production

To build your project for production:

```bash
npm run build
```

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
6 changes: 6 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
};

module.exports = nextConfig;
Loading