From 11689fdd3728b1dc8790dfaee0951ac3a9eb95db Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 24 Oct 2025 15:34:11 +0200 Subject: [PATCH] feat: add new compute, storage and GPU pages with routes - Created new page components for Compute, Storage and GPU sections with basic layout structure - Added corresponding routes in App.tsx to enable navigation to the new pages - Implemented consistent page structure with Header, main content area and Footer - Added decorative background gradient effect using tailwind classes for visual consistency --- src/App.tsx | 8 +++++++- src/pages/compute/Compute.tsx | 29 +++++++++++++++++++++++++++++ src/pages/gpu/Gpu.tsx | 29 +++++++++++++++++++++++++++++ src/pages/storage/Storage.tsx | 29 +++++++++++++++++++++++++++++ 4 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 src/pages/compute/Compute.tsx create mode 100644 src/pages/gpu/Gpu.tsx create mode 100644 src/pages/storage/Storage.tsx diff --git a/src/App.tsx b/src/App.tsx index 78044f1..28bc1b1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,9 @@ import CloudPage from './pages/cloud/CloudPage' import NetworkPage from './pages/network/NetworkPage' import AgentsPage from './pages/agents/AgentsPage' import DownloadPage from './pages/download/DownloadPage' +import Compute from './pages/compute/Compute' +import Storage from './pages/storage/Storage' +import Gpu from './pages/gpu/Gpu' function App() { return ( @@ -15,7 +18,10 @@ function App() { } /> } /> } /> - } /> + } /> + } /> + } /> + } /> diff --git a/src/pages/compute/Compute.tsx b/src/pages/compute/Compute.tsx new file mode 100644 index 0000000..0e5830e --- /dev/null +++ b/src/pages/compute/Compute.tsx @@ -0,0 +1,29 @@ +import { Footer } from "../components/Footer"; +import { Header } from "../components/Header"; + +const Compute = () => { + return ( + <> +
+
+
+ +
+