diff --git a/prisma/migrations/20240611081720_init/migration.sql b/prisma/migrations/20240611081720_init/migration.sql
deleted file mode 100644
index e89dbc8..0000000
--- a/prisma/migrations/20240611081720_init/migration.sql
+++ /dev/null
@@ -1,25 +0,0 @@
--- CreateTable
-CREATE TABLE "User" (
- "id" TEXT NOT NULL,
- "email" TEXT NOT NULL,
- "name" TEXT NOT NULL,
-
- CONSTRAINT "User_pkey" PRIMARY KEY ("id")
-);
-
--- CreateTable
-CREATE TABLE "Response" (
- "id" TEXT NOT NULL,
- "type" TEXT NOT NULL,
- "question" TEXT NOT NULL,
- "response" TEXT NOT NULL,
- "userId" TEXT NOT NULL,
-
- CONSTRAINT "Response_pkey" PRIMARY KEY ("id")
-);
-
--- CreateIndex
-CREATE UNIQUE INDEX "User_email_key" ON "User"("email");
-
--- AddForeignKey
-ALTER TABLE "Response" ADD CONSTRAINT "Response_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
diff --git a/prisma/migrations/20240612193058_update/migration.sql b/prisma/migrations/20240612193058_update/migration.sql
deleted file mode 100644
index 094068b..0000000
--- a/prisma/migrations/20240612193058_update/migration.sql
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
- Warnings:
-
- - You are about to drop the column `type` on the `Response` table. All the data in the column will be lost.
-
-*/
--- AlterTable
-ALTER TABLE "Response" DROP COLUMN "type";
diff --git a/prisma/migrations/20240617064507_update/migration.sql b/prisma/migrations/20240617064507_update/migration.sql
deleted file mode 100644
index cb1d153..0000000
--- a/prisma/migrations/20240617064507_update/migration.sql
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- Warnings:
-
- - A unique constraint covering the columns `[registrationNumber]` on the table `User` will be added. If there are existing duplicate values, this will fail.
- - A unique constraint covering the columns `[phoneNumber]` on the table `User` will be added. If there are existing duplicate values, this will fail.
- - Added the required column `firstPreference` to the `User` table without a default value. This is not possible if the table is not empty.
- - Added the required column `phoneNumber` to the `User` table without a default value. This is not possible if the table is not empty.
- - Added the required column `registrationNumber` to the `User` table without a default value. This is not possible if the table is not empty.
- - Added the required column `secondPreference` to the `User` table without a default value. This is not possible if the table is not empty.
-
-*/
--- AlterTable
-ALTER TABLE "User" ADD COLUMN "firstPreference" TEXT NOT NULL,
-ADD COLUMN "phoneNumber" TEXT NOT NULL,
-ADD COLUMN "registrationNumber" TEXT NOT NULL,
-ADD COLUMN "secondPreference" TEXT NOT NULL;
-
--- CreateIndex
-CREATE UNIQUE INDEX "User_registrationNumber_key" ON "User"("registrationNumber");
-
--- CreateIndex
-CREATE UNIQUE INDEX "User_phoneNumber_key" ON "User"("phoneNumber");
diff --git a/prisma/migrations/20240617065824_update/migration.sql b/prisma/migrations/20240617065824_update/migration.sql
deleted file mode 100644
index 25bdf5e..0000000
--- a/prisma/migrations/20240617065824_update/migration.sql
+++ /dev/null
@@ -1,5 +0,0 @@
--- AlterTable
-ALTER TABLE "User" ALTER COLUMN "firstPreference" DROP NOT NULL,
-ALTER COLUMN "phoneNumber" DROP NOT NULL,
-ALTER COLUMN "registrationNumber" DROP NOT NULL,
-ALTER COLUMN "secondPreference" DROP NOT NULL;
diff --git a/prisma/migrations/20240617153032_update/migration.sql b/prisma/migrations/20240617153032_update/migration.sql
deleted file mode 100644
index 6a1b199..0000000
--- a/prisma/migrations/20240617153032_update/migration.sql
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
- Warnings:
-
- - Added the required column `dept` to the `Response` table without a default value. This is not possible if the table is not empty.
-
-*/
--- AlterTable
-ALTER TABLE "Response" ADD COLUMN "dept" TEXT NOT NULL;
diff --git a/prisma/migrations/20240617160424_update/migration.sql b/prisma/migrations/20240617160424_update/migration.sql
deleted file mode 100644
index aba06cd..0000000
--- a/prisma/migrations/20240617160424_update/migration.sql
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
- Warnings:
-
- - Added the required column `limit` to the `Response` table without a default value. This is not possible if the table is not empty.
- - Added the required column `required` to the `Response` table without a default value. This is not possible if the table is not empty.
-
-*/
--- AlterTable
-ALTER TABLE "Response" ADD COLUMN "limit" INTEGER NOT NULL,
-ADD COLUMN "options" TEXT[],
-ADD COLUMN "required" BOOLEAN NOT NULL;
diff --git a/prisma/migrations/20240617161752_update/migration.sql b/prisma/migrations/20240617161752_update/migration.sql
deleted file mode 100644
index 3efb0d8..0000000
--- a/prisma/migrations/20240617161752_update/migration.sql
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
- Warnings:
-
- - The `options` column on the `Response` table would be dropped and recreated. This will lead to data loss if there is data in the column.
-
-*/
--- AlterTable
-ALTER TABLE "Response" ALTER COLUMN "limit" DROP NOT NULL,
-DROP COLUMN "options",
-ADD COLUMN "options" JSONB;
diff --git a/prisma/migrations/20240617162023_update/migration.sql b/prisma/migrations/20240617162023_update/migration.sql
deleted file mode 100644
index 606e529..0000000
--- a/prisma/migrations/20240617162023_update/migration.sql
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
- Warnings:
-
- - Added the required column `type` to the `Response` table without a default value. This is not possible if the table is not empty.
-
-*/
--- AlterTable
-ALTER TABLE "Response" ADD COLUMN "type" TEXT NOT NULL;
diff --git a/prisma/migrations/20240617162100_update/migration.sql b/prisma/migrations/20240617162100_update/migration.sql
deleted file mode 100644
index df754f9..0000000
--- a/prisma/migrations/20240617162100_update/migration.sql
+++ /dev/null
@@ -1,2 +0,0 @@
--- AlterTable
-ALTER TABLE "Response" ALTER COLUMN "required" DROP NOT NULL;
diff --git a/prisma/migrations/migration_lock.toml b/prisma/migrations/migration_lock.toml
deleted file mode 100644
index fbffa92..0000000
--- a/prisma/migrations/migration_lock.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-# Please do not edit this file manually
-# It should be added in your version-control system (i.e. Git)
-provider = "postgresql"
\ No newline at end of file
diff --git a/prisma/schema.prisma b/prisma/schema.prisma
deleted file mode 100644
index 8119fee..0000000
--- a/prisma/schema.prisma
+++ /dev/null
@@ -1,40 +0,0 @@
-generator client {
- provider = "prisma-client-js"
-}
-
-datasource db {
- provider = "postgresql"
- url = env("DATABASE_URL")
- directUrl = env("DIRECT_URL")
-}
-
-model User {
- id String @id @default(uuid())
-
- email String @unique
- name String
-
- registrationNumber String? @unique
- phoneNumber String? @unique
-
- firstPreference String?
- secondPreference String?
-
- responses Response[]
-}
-
-model Response {
- id String @id @default(uuid())
-
- question String
- response String
-
- dept String
- type String
- options Json?
- limit Int?
- required Boolean?
-
- user User @relation(fields: [userId], references: [id])
- userId String
-}
diff --git a/src/lib/components/forms/Navbar.svelte b/src/lib/components/forms/Navbar.svelte
deleted file mode 100644
index 0b37b2c..0000000
--- a/src/lib/components/forms/Navbar.svelte
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
diff --git a/src/lib/components/forms/questions/Checkbox.svelte b/src/lib/components/forms/questions/Checkbox.svelte
deleted file mode 100644
index 9891e56..0000000
--- a/src/lib/components/forms/questions/Checkbox.svelte
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
- {#each fields as field}
-