diff --git a/.gitignore b/Frontend/.gitignore similarity index 100% rename from .gitignore rename to Frontend/.gitignore diff --git a/eslint.config.js b/Frontend/eslint.config.js similarity index 100% rename from eslint.config.js rename to Frontend/eslint.config.js diff --git a/Frontend/index.html b/Frontend/index.html new file mode 100644 index 0000000..b6120e1 --- /dev/null +++ b/Frontend/index.html @@ -0,0 +1,22 @@ + + + +
+ + + + + + ++ Don’t have an account?{" "} + + Sign up + +
++ Already have an account?{" "} + + Login + +
+
*/
+}
+
+const DrivethruLandingPage = () => {
+ return (
+ + A simple, secure, and fast cloud storage solution for all your + files. Upload, organize, and access with ease. +
+ +
+ + "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. +
+
+ + 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. +
+
- Edit src/App.jsx and save to test HMR
-
- Click on the Vite and React logos to learn more -
- > - ) -} - -export default App diff --git a/src/assets/react.svg b/src/assets/react.svg deleted file mode 100644 index 6c87de9..0000000 --- a/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/index.css b/src/index.css deleted file mode 100644 index 08a3ac9..0000000 --- a/src/index.css +++ /dev/null @@ -1,68 +0,0 @@ -:root { - font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; - line-height: 1.5; - font-weight: 400; - - color-scheme: light dark; - color: rgba(255, 255, 255, 0.87); - background-color: #242424; - - font-synthesis: none; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -a { - font-weight: 500; - color: #646cff; - text-decoration: inherit; -} -a:hover { - color: #535bf2; -} - -body { - margin: 0; - display: flex; - place-items: center; - min-width: 320px; - min-height: 100vh; -} - -h1 { - font-size: 3.2em; - line-height: 1.1; -} - -button { - border-radius: 8px; - border: 1px solid transparent; - padding: 0.6em 1.2em; - font-size: 1em; - font-weight: 500; - font-family: inherit; - background-color: #1a1a1a; - cursor: pointer; - transition: border-color 0.25s; -} -button:hover { - border-color: #646cff; -} -button:focus, -button:focus-visible { - outline: 4px auto -webkit-focus-ring-color; -} - -@media (prefers-color-scheme: light) { - :root { - color: #213547; - background-color: #ffffff; - } - a:hover { - color: #747bff; - } - button { - background-color: #f9f9f9; - } -} diff --git a/src/main.jsx b/src/main.jsx deleted file mode 100644 index b9a1a6d..0000000 --- a/src/main.jsx +++ /dev/null @@ -1,10 +0,0 @@ -import { StrictMode } from 'react' -import { createRoot } from 'react-dom/client' -import './index.css' -import App from './App.jsx' - -createRoot(document.getElementById('root')).render( -