diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 51fc0f0..03e1fa6 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -3,6 +3,7 @@ import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import MainLayout from './layouts/MainLayout'; import ClipUpload from './pages/ClipUpload'; import ClipEdit from './pages/ClipEdit'; +import Home from './pages/Home'; import {useEffect} from "react"; @@ -15,7 +16,7 @@ function App() { }> - Main Page} /> + } /> } /> } /> diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx new file mode 100644 index 0000000..9f0f3ce --- /dev/null +++ b/frontend/src/pages/Home.tsx @@ -0,0 +1,43 @@ +const Home = () => { + return ( +
+ {/* Logo */} + VoD System Logo + + {/* Main Title */} +

+ The VoD System +

+ + {/* Description Container */} +
+

+ What is the VoD System? +

+

+ The VoD System is a powerful clip management platform designed to streamline how you + handle your video content. Whether you're a content creator, streamer, or educator, + VoD System lets you: +

+ +
    +
  • Upload clips effortlessly and securely.
  • +
  • Edit and trim videos with intuitive controls.
  • +
  • Compress files to specific file sizes.
  • +
  • Organize your clips for quick access and sharing.
  • +
+ +

+ Designed with simplicity and efficiency in mind, VoD System adapts to your workflow, + making video clip management faster and more enjoyable than ever. +

+
+
+ ); +}; + +export default Home;