This commit is contained in:
despiegk 2025-07-25 09:55:39 +02:00
parent 5271f879f9
commit 8812ffe449
16 changed files with 3 additions and 4 deletions

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ThreeFold Galaxy Coop - Building the New Internet Together</title>
</head>
<body>
<body class="bg-background text-foreground">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 938 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 564 KiB

View File

@ -6,6 +6,7 @@ import { Cpu, Database, Network, Shield, Zap, Scale, Globe, CheckCircle, BookOpe
import quantumSafeImage from '../assets/quantum_safe.png'
import MyceliumImage from '../assets/myceliumn.png'
import { AlertCircle } from 'lucide-react'
import GalaxyMachine from '../assets/tenstorrent_galaxy_internal_components.png'
import Navigation from './Navigation.jsx'
function TechnologyPage() {
@ -13,7 +14,7 @@ function TechnologyPage() {
<div className="min-h-screen bg-background">
{/* The `Navigation` component is now rendered in `App.jsx` remove it from here */}
<div className="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 py-24">
<img src="/src/assets/tenstorrent_galaxy_internal_components.png" alt="Tenstorrent Galaxy Internal Components" className="w-full h-auto rounded-lg shadow-lg" />
<img src={GalaxyMachine} alt="Galaxy" className="w-full h-auto rounded-lg shadow-lg" />
</div>
{/* Technology Hero Section */}

View File

@ -47,7 +47,5 @@ html[data-theme='dark'] {
}
body {
@apply bg-background text-foreground;
transition: background-color 0.3s ease, color 0.3s ease;
}