├── .env ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── action.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components ├── HouseCard.tsx ├── HouseDetails.tsx ├── HouseListItem.tsx ├── Houses.tsx ├── Logo.tsx ├── Message.tsx ├── Spinner.tsx └── UserInput.tsx ├── dbschema ├── default.esdl └── migrations │ ├── 00001.edgeql │ ├── 00002.edgeql │ ├── 00003.edgeql │ └── 00004.edgeql ├── edgedb.toml ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── seed.js ├── src └── types.ts ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= 2 | 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/README.md -------------------------------------------------------------------------------- /app/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/app/action.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/HouseCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/HouseCard.tsx -------------------------------------------------------------------------------- /components/HouseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/HouseDetails.tsx -------------------------------------------------------------------------------- /components/HouseListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/HouseListItem.tsx -------------------------------------------------------------------------------- /components/Houses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/Houses.tsx -------------------------------------------------------------------------------- /components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/Logo.tsx -------------------------------------------------------------------------------- /components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/Message.tsx -------------------------------------------------------------------------------- /components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/Spinner.tsx -------------------------------------------------------------------------------- /components/UserInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/components/UserInput.tsx -------------------------------------------------------------------------------- /dbschema/default.esdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/dbschema/default.esdl -------------------------------------------------------------------------------- /dbschema/migrations/00001.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/dbschema/migrations/00001.edgeql -------------------------------------------------------------------------------- /dbschema/migrations/00002.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/dbschema/migrations/00002.edgeql -------------------------------------------------------------------------------- /dbschema/migrations/00003.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/dbschema/migrations/00003.edgeql -------------------------------------------------------------------------------- /dbschema/migrations/00004.edgeql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/dbschema/migrations/00004.edgeql -------------------------------------------------------------------------------- /edgedb.toml: -------------------------------------------------------------------------------- 1 | [edgedb] 2 | server-version = "4.5" 3 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/seed.js -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/src/types.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/edgedb-ai-booking-assistant/HEAD/tsconfig.json --------------------------------------------------------------------------------