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
This commit is contained in:
2025-10-24 15:34:11 +02:00
parent 45b1c43b97
commit 11689fdd37
4 changed files with 94 additions and 1 deletions

View File

@@ -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() {
<Route path="cloud" element={<CloudPage />} />
<Route path="network" element={<NetworkPage />} />
<Route path="agents" element={<AgentsPage />} />
<Route path="download" element={<DownloadPage />} />
<Route path="download" element={<DownloadPage />} />
<Route path="compute" element={<Compute />} />
<Route path="storage" element={<Storage />} />
<Route path="gpu" element={<Gpu />} />
</Route>
</Routes>
</BrowserRouter>