Premier commit de la v2 de l'app

This commit is contained in:
UltraLionFr
2025-07-29 05:15:33 +02:00
parent 2f14898357
commit b593c60ab2
67 changed files with 5003 additions and 388 deletions
+80 -33
View File
@@ -1,36 +1,83 @@
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
aystone
├─ app
│ ├─ a-propos
│ │ └─ page.tsx
│ ├─ ads
│ │ └─ page.tsx
│ ├─ api
│ │ ├─ auth
│ │ │ └─ [...nextauth]
│ │ │ └─ route.ts
│ │ └─ planning
│ │ └─ route.ts
│ ├─ dashboard
│ │ ├─ Sidebar.tsx
│ │ ├─ StatCard.tsx
│ │ ├─ actions.ts
│ │ ├─ ajouter
│ │ │ ├─ AddProjectForm.tsx
│ │ │ └─ page.tsx
│ │ ├─ layout.tsx
│ │ ├─ page.tsx
│ │ ├─ profil
│ │ │ └─ page.tsx
│ │ └─ projets
│ │ ├─ [id]
│ │ │ ├─ EditProjectForm.tsx
│ │ │ └─ page.tsx
│ │ └─ page.tsx
│ ├─ globals.css
│ ├─ layout.tsx
│ ├─ login
│ │ └─ page.tsx
│ ├─ maps
│ │ └─ page.tsx
│ ├─ page.tsx
│ └─ providers.tsx
├─ auth.ts
├─ components
│ ├─ AdsGalleryClient.tsx
│ ├─ AdsSideBanners.tsx
│ ├─ AvailabilityPlanner.tsx
│ ├─ Banner.tsx
│ ├─ Footer.tsx
│ ├─ MapsClient.tsx
│ ├─ McSplash.tsx
│ ├─ MotionHeading.tsx
│ ├─ Navbar.tsx
│ ├─ ProjectsTable.tsx
│ └─ RedstoneParticles.tsx
├─ eslint.config.mjs
├─ lib
│ ├─ getAds.ts
│ └─ prisma.ts
├─ middleware.ts
├─ next.config.ts
├─ package-lock.json
├─ package.json
├─ postcss.config.mjs
├─ prisma
│ ├─ migrations
│ │ ├─ 20250727013821_init
│ │ │ └─ migration.sql
│ │ ├─ 20250727025700_add_mcname
│ │ │ └─ migration.sql
│ │ ├─ 20250727031005_project
│ │ │ └─ migration.sql
│ │ ├─ 20250727203115_add_availability_model
│ │ │ └─ migration.sql
│ │ └─ migration_lock.toml
│ └─ schema.prisma
├─ public
│ ├─ ads
│ │ ├─ riseofkinkdom.jpeg
│ │ └─ voat.png
│ ├─ aystone-saison2.png
│ └─ aystone.png
├─ tsconfig.json
└─ types
└─ next-auth.d.ts
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
## 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.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) 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.
```