Project Structure
Here's a simplified version of the entire directory structure of the RealEstatePro:
└── RealEstatePro/
├── Components/
│ ├── ...
│ ├── Admin // Add admin components here/
│ │ └── AdminComponents
│ ├── Components // general components
│ ├── ...
│ └── index.js // Exported components for use in pages
├── pages/
│ ├── [user] // admin pages
│ └── ...
├── public // includes assets throughtout website./
│ └── media
├── styles/
│ └── global.scss // add common styling here
├── next.config.js // For custom advanced configuration of Next.js (https://nextjs.org/docs/api-reference/next.config.js/introduction)
├── package-lock.json // (https://docs.npmjs.com/cli/v9/configuring-npm/package-lock-json)
├── package.json // (https://docs.npmjs.com/cli/v9/configuring-npm/package-json)
├── postcss.config.js // (https://nextjs.org/docs/advanced-features/customizing-postcss-config)
└── tailwind.config.js // (https://tailwindcss.com/docs/configuration)