This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.js
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
.
├── public/
│ ├── app/
│ │ ├── auth/
│ │ │ └── routes/
│ │ │ ├── sign-in/
│ │ │ │ └── [[...sign-in]].jsx
│ │ │ └── sign-up/
│ │ │ └── [[...sign-up]].jsx
│ │ └── dashboard/
│ │ └── routes/
│ │ └── file-preview/
│ │ └── [fileId].jsx
│ └── files/
│ ├── upgrade/
│ └── upload/
├── _components/
│ ├── Alert.js
│ ├── SideNav.js
│ ├── TopHeader.js
│ └── layout.js
├── routes/
│ ├── about-us/
│ │ └── _components/
│ │ └── Dropdown.js
│ ├── contact-us/
│ │ └── _components/
│ │ ├── Footer.js
│ │ ├── Header.js
│ │ ├── Hero.js
│ │ └── mail-template.js
│ └── f/
│ └── [fileId].js
├── favicon.ico
├── globals.css
├── layout.js
├── page.js
├── public/
│ └── favicon.ico
├── .eslintrc.json
├── .gitignore
├── README.md
├── firebaseConfig.js
├── jsconfig.json
├── middleware.js
├── next.config.mjs
├── package-lock.json
├── package.json
├── postcss.config.js
├── tailwind.config.js
└── tsconfig.json
- public/app/: Contains authentication-related routes for signing in, signing up, and dashboard components.
- public/files/: Holds routes for file-related actions such as upgrading and uploading.
- _components/: Reusable components like Alert, SideNav, TopHeader, and layout.
- routes/: Contains routes for about us, contact us, and file-related actions.
- public/: Holds favicon.ico.
- .eslintrc.json: ESLint configuration file.
- .gitignore: Specifies intentionally untracked files to ignore.
- README.md: Markdown file containing project information.
- firebaseConfig.js: Firebase configuration file.
- jsconfig.json: JavaScript configuration file.
- middleware.js: Middleware for API routes.
- next.config.mjs: Next.js configuration file.
- package-lock.json: Automatically generated for any operations where npm modifies either the node_modules tree or package.json.
- package.json: Metadata file for the project.
- postcss.config.js: PostCSS configuration file.
- tailwind.config.js: Tailwind CSS configuration file.
- tsconfig.json: TypeScript configuration file.