diff --git a/prisma/migrations/20250710203250_add_submission_models/migration.sql b/prisma/migrations/20250710203250_add_submission_models/migration.sql
new file mode 100644
index 0000000..0fadab4
--- /dev/null
+++ b/prisma/migrations/20250710203250_add_submission_models/migration.sql
@@ -0,0 +1,32 @@
+-- CreateTable
+CREATE TABLE "BugReport" (
+ "id" TEXT NOT NULL,
+ "name" TEXT,
+ "email" TEXT,
+ "bug" TEXT NOT NULL,
+ "date" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
+
+ CONSTRAINT "BugReport_pkey" PRIMARY KEY ("id")
+);
+
+-- CreateTable
+CREATE TABLE "ImprovementIdea" (
+ "id" TEXT NOT NULL,
+ "name" TEXT,
+ "email" TEXT,
+ "idea" TEXT NOT NULL,
+ "date" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
+
+ CONSTRAINT "ImprovementIdea_pkey" PRIMARY KEY ("id")
+);
+
+-- CreateTable
+CREATE TABLE "ContactMessage" (
+ "id" TEXT NOT NULL,
+ "name" TEXT,
+ "email" TEXT,
+ "message" TEXT NOT NULL,
+ "date" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
+
+ CONSTRAINT "ContactMessage_pkey" PRIMARY KEY ("id")
+);
diff --git a/prisma/schema.prisma b/prisma/schema.prisma
index 3775af4..80d122d 100644
--- a/prisma/schema.prisma
+++ b/prisma/schema.prisma
@@ -49,6 +49,30 @@ model MileageEntry {
date DateTime @default(now())
}
+model BugReport {
+ id String @id @default(cuid())
+ name String?
+ email String?
+ bug String
+ date DateTime @default(now())
+}
+
+model ImprovementIdea {
+ id String @id @default(cuid())
+ name String?
+ email String?
+ idea String
+ date DateTime @default(now())
+}
+
+model ContactMessage {
+ id String @id @default(cuid())
+ name String?
+ email String?
+ message String
+ date DateTime @default(now())
+}
+
enum FuelType {
GASOLINE
DIESEL
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..713f347
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,15 @@
+export default function AboutPage() {
+ return (
+
+
About Car Fuel Tracker
+
Car Fuel Tracker is a modern web app designed to help you track your car’s fuel fill-ups, EV charging, mileage, and costs. Whether you drive a gasoline, diesel, LPG, hybrid, or electric vehicle, our app makes it easy to log, analyze, and optimize your driving habits.
{isLoggedIn
? "Jump right into your dashboard to log fill-ups, view stats, and manage your cars."
- : "Effortlessly log fill-ups, monitor fuel costs, and analyze your driving habits—all in one beautiful dashboard."}
+ : "Effortlessly log fill-ups, monitor fuel costs, and analyze your driving habits—all in one beautiful dashboard. Save money, track efficiency, and manage all your vehicles including hybrids and EVs."}
- Quickly add fuel entries and keep your records organized.
-
-
-
- 📊
-
- Analyze Stats
-
-
- Visualize your fuel consumption, costs, and mileage trends.
-
-
-
- 🚗
-
- Manage Cars
-
-
- Track multiple vehicles and switch between them easily.
-
+ {/* How It Works Section */}
+
+
How It Works
+
+
+ ➕
+
Add Your Car
+
Register your vehicle, including hybrids and EVs.
+
+
+ ⛽
+
Log Fill-Ups & Mileage
+
Record fuel, charging, and odometer readings in seconds.
+
+
+ 📊
+
View Stats & Insights
+
Analyze consumption, costs, and trends to save money.
+
- {/* Testimonial Section */}
-
-
- “
-
- This app made it so easy to track my car’s fuel expenses and spot
- trends. Highly recommended for anyone who wants to save money and
- understand their driving habits!
-
- — Happy Driver
+ {/* Benefits Section */}
+
+
Why Use Car Fuel Tracker?
+
+
+ 💸 Save Money
+
Spot trends, optimize driving habits, and reduce fuel costs.
+
+
+ 🚗 Multi-Car & Hybrid Support
+
Track any number of vehicles, including hybrids and EVs.
+
+
+ 📈 Export & Analyze
+
Download your data for deeper analysis or tax purposes.
+
+
+ 🔒 Private & Secure
+
Your data is protected and only accessible to you.
+
+
+
+
+ {/* Reviews Section */}
+
+
What Users Say
+
+
+ “
+
This app made it so easy to track my car’s fuel expenses and spot trends. Highly recommended for anyone who wants to save money and understand their driving habits!
+ — Happy Driver
+
+
+ “
+
I love the hybrid support! Now I can track both my EV charging and gasoline fill-ups in one place.
+ — Hybrid Owner
+
+
+
+
+ {/* Features Section (condensed) */}
+
+
+ ⛽
+
Log Fill-Ups
+
Quickly add fuel entries and keep your records organized.
+
+
+ 📊
+
Analyze Stats
+
Visualize your fuel consumption, costs, and mileage trends.
+
+
+ 🚗
+
Manage Cars
+
Track multiple vehicles and switch between them easily.