black theme complete

This commit is contained in:
Emre
2025-10-11 06:18:46 +03:00
parent 16c1a09bc4
commit 31fe89eabb
16 changed files with 276 additions and 293 deletions

View File

@@ -1,7 +1,7 @@
import { HeroSection } from './components/HeroSection';
import { ScrollLockedSection } from './components/ScrollLockedSection';
import { CtaSection } from './components/CtaSection';
import { FooterSection } from './components/FooterSection';
import { Footer } from '../../components/layout/Footer';
const highlightTextClass = 'text-brand-500';
@@ -16,7 +16,8 @@ const sections = [
</>
),
description:
'Physical infrastructure meets profitable capacity. Deploy hardware, join the grid, earn from day one.',
'GeoMind enables everyone to profit from Cloud and AI infrastructure at any scale. Deploy hardware, sell your capacity to the marketplace, earn from day one.',
showButton: false,
},
{
id: 'deploy-anywhere',
@@ -27,11 +28,13 @@ const sections = [
</>
),
description:
'Tier-H for homes and communities. Tier-S for enterprises and unused commercial space. Same economics, different scale.',
'Tier-H for homes and communities. Tier-S for enterprises and underutilized commercial space. Same economics, different scale.',
buttonText: 'Explore Hardware Tiers',
buttonLink: '/technology#hardware-tiers',
},
{
id: 'autonomous-stack',
eyebrow: 'Autonomous Stack',
eyebrow: 'Plug-and-Play',
title: (
<>
Five Primitives, <span className={highlightTextClass}>Zero Dependencies</span>
@@ -39,50 +42,61 @@ const sections = [
),
description:
'Hardware ships with OS, Compute, Storage, Network, and GPU built-in. Fully autonomous operation eliminates vendor lock-in completely.',
buttonText: 'Explore Software Stack',
buttonLink: '/technology#software-stack',
},
{
id: 'capacity-marketplace',
eyebrow: 'Marketplace',
eyebrow: 'Glocal Marketplace',
title: (
<>
Local Hardware, <span className={highlightTextClass}>Global</span> Liquidity
</>
),
description:
'The OS divides capacity into tradeable slices. Use what you need. Sell idle capacity automatically. Access scales instantly.',
description: (
<>
Zero-OS partitions capacity into tradeable slices called <strong>Cloud Units (CU)</strong>. Use what you need. Sell idle capacity automatically on the marketplace.
</>
),
buttonText: 'Explore Marketplace',
buttonLink: '/technology#marketplace',
},
{
id: 'dual-revenue',
eyebrow: 'Revenue Streams',
eyebrow: 'Profit',
title: (
<>
<span className={highlightTextClass}>Earn</span> While You Operate
</>
),
description:
'Run your workloads during business hours. Rent excess capacity 24/7. Infrastructure becomes an income-generating asset, not a cost center.',
'Run your workloads during business hours. Rent excess capacity 24/7. Cloud capacity and infrastructure becomes an income-generating asset, not a cost center.',
showButton: false,
},
{
id: 'economic-advantage',
eyebrow: 'Economics',
eyebrow: 'Competitive Advantage',
title: (
<>
<span className={highlightTextClass}>Lower Costs</span>, Higher Margins
</>
),
description:
'Minimal datacenter build costs. Energy-efficient autonomous operation. No enterprise maintenance overhead. Math works from day one.',
'Minimal datacenter build costs. Energy-efficient autonomous operation. No enterprise maintenance overhead. Your competitive advantage is built in.',
showButton: false,
},
{
id: 'instant-demand',
eyebrow: 'Demand',
eyebrow: 'Offtakers',
title: (
<>
<span className={highlightTextClass}>Built-In</span> Customer Base
</>
),
description:
'Applications already consume capacity from the grid. Deploy hardware, connect to marketplace, start earning. No customer acquisition needed.',
'Initial enterprise offtake partners are in place. Deploy hardware, connect to marketplace, start earning. No customer acquisition needed.',
buttonText: 'See Use Cases',
buttonLink: '/usecases',
},
];
@@ -96,7 +110,7 @@ export const HomePage = () => {
))}
<CtaSection />
</div>
<FooterSection />
<Footer />
</div>
);
};