feat: implement hero section with multi-trip booking widget and backend infrastructure

This commit is contained in:
AnuragJangid18 2026-04-04 22:04:48 +05:30
parent 44995cb5db
commit e7365b06ac
21 changed files with 4104 additions and 113 deletions

22
prisma/schema.prisma Normal file
View file

@ -0,0 +1,22 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
// Get a free hosted Postgres database in seconds: `npx create-db`
generator client {
provider = "prisma-client-js"
previewFeatures = ["driverAdapters"]
}
datasource db {
provider = "mysql"
}
model User {
id Int @id @default(autoincrement())
name String
email String @unique
phone String
password String
createdAt DateTime @default(now())
}