Willkommen bei MØRENT, unserem Abschlussprojekt bei SuperCode.
Diese moderne Autovermietungsplattform ermöglicht es Nutzern, Fahrzeuge bequem online zu suchen, zu filtern und zu buchen.
🔗 Live-Demo: morent-oguz-mona-mina-nina.vercel.app
- 🔍 Filterfunktionen: Filtern Sie Fahrzeuge nach Kategorie, Preis, Sitzanzahl, Location und Horstpower.
- 📄 Detailansicht: Erhalten Sie umfassende Informationen und Bewertungen zu jedem Fahrzeug. (wir empfehlen die SuperCode Ape 👾)
- ❤️ Favoriten: Speichern Sie Ihre Lieblingsfahrzeuge für später.
- 👤 Profilseite: Userdaten und Userbild aktualisieren. (audiosensitive bitte nicht 5x das Profilbild klicken 🥳)
- 🔐 Benutzerauthentifizierung: Anmeldung und Registrierung mit Supabase.
- 📱 Responsive Design: Optimiert für alle Bildschirmgrößen.
- 💁🏽♀️ TeamPage: Wir stellen uns vor. 🌳🌸🍁🍀"How it works" im Footer klicken.
INSERT collage of logos
- Frontend: HTML, CSS, Typescript, React
- Framework: Vite
- Code Editor: Visual Code Studio
- Backend: Supabase (Datenbank & Auth)
- Version Control: Github
- Deployment: Vercel
- Projectmanagement / TeamOrga: Miro
- Communication: Discord, Google Meet
- Assigned ProjectDesign: Figma
- Libs, Packages, Tools: TanStack React-Query, React-Router, FramerMotion,
HTML, CSS, JS, TS, SQL, 🇩🇪, 🇬🇧
to run the Project on your local machine
INSERT the steps
- clone the repo
- npm i
- npm run dev
- what else? eigene datenbank und die connecten?
insert some Text about supabase
insert some text about supabase
insert img of routing miro TODO update routing with protected routes
-list what we used, and explain what we did with it
🌳 Oguz 🌸 Mona 🍁 Mina 🍀 Nina
insert roles, github links,
initial Vite-Filling:
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
export default tseslint.config({
extends: [
// Remove ...tseslint.configs.recommended and replace with this
...tseslint.configs.recommendedTypeChecked,
// Alternatively, use this for stricter rules
...tseslint.configs.strictTypeChecked,
// Optionally, add this for stylistic rules
...tseslint.configs.stylisticTypeChecked,
],
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:
// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'
export default tseslint.config({
plugins: {
// Add the react-x and react-dom plugins
'react-x': reactX,
'react-dom': reactDom,
},
rules: {
// other rules...
// Enable its recommended typescript rules
...reactX.configs['recommended-typescript'].rules,
...reactDom.configs.recommended.rules,
},
})
