From 6c0b39ddbfc502e859aa7e08c474eef0f896d15b Mon Sep 17 00:00:00 2001 From: atharvaombase Date: Wed, 26 Feb 2025 12:06:10 +0530 Subject: [PATCH] Fix:Moved user related pages to UserPages --- Frontend/src/pages/UserPages/Dashboard.jsx | 21 ++ .../pages/UserPages/DrivethruLandingPage.jsx | 287 ++++++++++++++++++ 2 files changed, 308 insertions(+) create mode 100644 Frontend/src/pages/UserPages/Dashboard.jsx create mode 100644 Frontend/src/pages/UserPages/DrivethruLandingPage.jsx diff --git a/Frontend/src/pages/UserPages/Dashboard.jsx b/Frontend/src/pages/UserPages/Dashboard.jsx new file mode 100644 index 0000000..887f332 --- /dev/null +++ b/Frontend/src/pages/UserPages/Dashboard.jsx @@ -0,0 +1,21 @@ +import React from "react"; +import Sidebar from "../../components/Sidebar"; + +const Dashboard = () => { + return ( + <> + +
+
+

Dashboard

+

+ This is your custom dashboard body. Place your widgets, charts, + stats, or other components here. +

+
+
+ + ); +}; + +export default Dashboard; diff --git a/Frontend/src/pages/UserPages/DrivethruLandingPage.jsx b/Frontend/src/pages/UserPages/DrivethruLandingPage.jsx new file mode 100644 index 0000000..b853be9 --- /dev/null +++ b/Frontend/src/pages/UserPages/DrivethruLandingPage.jsx @@ -0,0 +1,287 @@ +import React from "react"; +import Footer from "../../components/Footer"; +{ + /* */ +} + +const DrivethruLandingPage = () => { + return ( +
+
+
+
+
+ +
+
+
+ + + +
+

Drive-thru

+
+ +

+ Store, Access & Share Your Files — Anytime, Anywhere! +

+ +

+ A simple, secure, and fast cloud storage solution for all your + files. Upload, organize, and access with ease. +

+ +
+ + +
+
+
+
+
+ +
+
+
+ {" "} +
+ Person using Drive-thru on laptop +
+ {/* Features Card */} +
+
+

Key Features

+ +
+
+
+ + + +
+

+ "Easy Upload & Access" – Drag & drop, instant access. +

+
+ +
+
+ + + +
+

+ "Secure & Private" – End-to-end encryption. +

+
+ +
+
+ + + +
+

+ "Seamless Sharing" – Share files with one click. +

+
+ +
+
+ + + +
+

+ "Access Anywhere" – Works on all devices. +

+
+
+
+
+
+ + {/* How It Works Section */} +
+ {/* Person with Phone Image */} +
+ Person using Drive-thru on phone +
+ + {/* How It Works Card */} +
+
+

How It Works

+ +
+
+
+ + + +
+

+ Create an account – Sign up in seconds. +

+
+ +
+
+ + + +
+

+ Upload files – Drag & drop or select from your device. +

+
+ +
+
+ + + + +
+

+ Manage files – Rename, move, or delete easily. +

+
+ +
+
+ + + +
+

+ Access anytime – Open files from any device. +

+
+
+
+
+
+
+
+ +
+ ); +}; + +export default DrivethruLandingPage;