Compare commits
10 Commits
main
...
68526abff3
Author | SHA1 | Date | |
---|---|---|---|
|
68526abff3 | ||
|
5df98adbaf | ||
|
d3fd2db514 | ||
|
9451d22494 | ||
|
c0f08ad3fa | ||
|
31fe89eabb | ||
|
16c1a09bc4 | ||
|
60fa49c0ef | ||
|
f450d61ccf | ||
|
43682f9fbe |
@@ -2,9 +2,9 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<link rel="icon" type="image/png" href="/iconG.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>geomind2</title>
|
||||
<title>GeoMind</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "geomind2",
|
||||
"name": "geomind",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
|
BIN
public/iconG.png
Normal file
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 491 KiB |
BIN
public/images/cloud_sky.png
Normal file
After Width: | Height: | Size: 199 KiB |
BIN
public/images/exited_company_logos/DataCenter.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/images/exited_company_logos/Dedigate.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
public/images/exited_company_logos/HOSTBASKET.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
public/images/exited_company_logos/Q-layer.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
public/images/exited_company_logos/amplidata.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
public/images/motherboard.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
public/images/node.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
public/videos/galaxy_vid.mp4
Normal file
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,105 +1,81 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { useState } from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import ContactForm from '../ui/ContactForm';
|
||||
|
||||
type FooterLink = {
|
||||
label: string;
|
||||
href: string;
|
||||
target?: '_blank' | '_self';
|
||||
};
|
||||
const footerLinksColumn1 = [
|
||||
{ label: 'About', to: '/about' },
|
||||
{ label: 'Tech', to: '/technology' },
|
||||
{ label: 'Use Cases', to: '/usecases' },
|
||||
];
|
||||
|
||||
type FooterColumn = {
|
||||
title: string;
|
||||
links: FooterLink[];
|
||||
};
|
||||
|
||||
const footerColumns: FooterColumn[] = [
|
||||
{
|
||||
title: 'GeoMind',
|
||||
links: [
|
||||
{ label: 'Technology', href: '/technology' },
|
||||
{ label: 'Use Cases', href: '/usecases' },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'Company',
|
||||
links: [
|
||||
{ label: 'Manual', href: 'https://manual.grid.tf/', target: '_blank' },
|
||||
{ label: 'Support', href: 'mailto:support@threefold.tech', target: '_blank' },
|
||||
],
|
||||
},
|
||||
const footerLinksColumn2 = [
|
||||
{ label: 'Manual', href: 'https://manual.grid.tf' },
|
||||
{ label: 'Privacy', to: '/privacy' },
|
||||
];
|
||||
|
||||
export const Footer = () => {
|
||||
const [isContactFormOpen, setIsContactFormOpen] = useState(false);
|
||||
const year = new Date().getFullYear();
|
||||
|
||||
return (
|
||||
<footer className="border-t border-slate-200 bg-white">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 16 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.2 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="mx-auto flex max-w-6xl flex-col gap-8 px-6 py-12 lg:flex-row lg:items-start lg:justify-between lg:px-8"
|
||||
<footer className="bg-black px-6 pb-16 pt-12 sm:px-10 lg:px-20">
|
||||
<div className="mx-auto flex w-full max-w-7xl flex-col gap-12 border-t border-white/10 pt-12 md:flex-row md:justify-between">
|
||||
<div className="space-y-3">
|
||||
<span className="text-xs font-bold uppercase tracking-[0.35em] text-white">
|
||||
Geomind
|
||||
</span>
|
||||
<p className="max-w-m text-xs font-medium uppercase tracking-[0.3em] text-white">
|
||||
The datacenter standard for
|
||||
<br />
|
||||
the next era of cloud and AI.
|
||||
</p>
|
||||
</div>
|
||||
<nav className="grid grid-cols-2 gap-x-24 gap-y-4 text-xs font-medium uppercase tracking-[0.3em] text-white md:ml-auto self-start">
|
||||
<div className="flex flex-col items-start gap-4">
|
||||
{footerLinksColumn1.map(({ label, to }) => (
|
||||
<Link key={to} to={to} className="text-white transition-colors duration-300">
|
||||
{label}
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
<div className="flex flex-col items-start gap-4">
|
||||
{footerLinksColumn2.map(({ label, to, href }) =>
|
||||
href ? (
|
||||
<a
|
||||
key={label}
|
||||
href={href}
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="text-white transition-colors duration-300"
|
||||
>
|
||||
<div className="flex items-center gap-3">
|
||||
<img
|
||||
src="/images/geomind_logo.png"
|
||||
alt="Geomind logo"
|
||||
className="h-12 w-12 rounded-full object-contain shadow-subtle"
|
||||
{label}
|
||||
</a>
|
||||
) : (
|
||||
<Link key={label} to={to} className="text-white transition-colors duration-300">
|
||||
{label}
|
||||
</Link>
|
||||
),
|
||||
)}
|
||||
<button
|
||||
onClick={() => setIsContactFormOpen(true)}
|
||||
className="text-white transition-colors duration-300 hover:text-brand-400 uppercase"
|
||||
>
|
||||
Support
|
||||
</button>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
<div className="mx-auto mt-12 flex w-full max-w-7xl items-center justify-between text-xs uppercase tracking-[0.3em] text-white">
|
||||
<span>
|
||||
© {year}. <span className="text-brand-400">Built on Geomind.</span> All rights reserved.
|
||||
</span>
|
||||
</div>
|
||||
<ContactForm
|
||||
isOpen={isContactFormOpen}
|
||||
onClose={() => setIsContactFormOpen(false)}
|
||||
title="Get Support"
|
||||
formType="contact"
|
||||
/>
|
||||
<div>
|
||||
<p className="text-sm font-semibold tracking-[0.35em] text-slate-500">
|
||||
GEOMIND
|
||||
</p>
|
||||
<p className="mt-2 max-w-xs text-sm text-slate-500">
|
||||
The datacenter standard for the next era of cloud and AI.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="grid flex-1 grid-cols-1 gap-8 text-sm sm:grid-cols-2 lg:grid-cols-2 lg:ml-auto lg:max-w-md">
|
||||
{footerColumns.map((column) => (
|
||||
<div key={column.title}>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.25em] text-slate-400">
|
||||
{column.title}
|
||||
</p>
|
||||
<ul className="mt-3 space-y-3 text-sm font-medium text-slate-600">
|
||||
{column.links.map((link) => (
|
||||
<li key={link.label}>
|
||||
<a
|
||||
href={link.href}
|
||||
target={link.target}
|
||||
rel={link.target === '_blank' ? 'noopener noreferrer' : undefined}
|
||||
className="transition-colors duration-300 hover:text-brand-600"
|
||||
>
|
||||
{link.label}
|
||||
</a>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</motion.div>
|
||||
<div className="bg-mist py-4">
|
||||
<div className="mx-auto flex max-w-6xl flex-col items-center justify-between gap-2 px-6 text-xs text-slate-500 sm:flex-row lg:px-8">
|
||||
<span>Copyright {new Date().getFullYear()} GeoMind. All rights reserved.</span>
|
||||
<div className="flex gap-4">
|
||||
<a
|
||||
href="https://www.linkedin.com/company/tf9/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-brand-600"
|
||||
>
|
||||
LinkedIn
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/threefoldtech"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-brand-600"
|
||||
>
|
||||
GitHub
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
};
|
||||
|
@@ -2,25 +2,21 @@ import { useEffect, useState } from 'react';
|
||||
import { Link, NavLink, useLocation } from 'react-router-dom';
|
||||
import { motion, AnimatePresence } from 'framer-motion';
|
||||
import { cn } from '../../lib/cn';
|
||||
import { buttonBaseClass } from '../../lib/buttonStyles';
|
||||
import ContactForm from '../ui/ContactForm';
|
||||
|
||||
const navItems = [
|
||||
{ label: 'Home', to: '/' },
|
||||
{ label: 'About', to: '/about' },
|
||||
{ label: 'Technology', to: '/technology' },
|
||||
{ label: 'Tech', to: '/technology' },
|
||||
{ label: 'Use Cases', to: '/usecases' },
|
||||
];
|
||||
|
||||
export const Header = () => {
|
||||
const [isScrolled, setIsScrolled] = useState(false);
|
||||
const [isMenuOpen, setIsMenuOpen] = useState(false);
|
||||
const [hoveredNav, setHoveredNav] = useState<string | null>(null);
|
||||
const [isContactFormOpen, setIsContactFormOpen] = useState(false);
|
||||
const location = useLocation();
|
||||
|
||||
useEffect(() => {
|
||||
const onScroll = () => setIsScrolled(window.scrollY > 12);
|
||||
onScroll();
|
||||
window.addEventListener('scroll', onScroll);
|
||||
return () => window.removeEventListener('scroll', onScroll);
|
||||
}, []);
|
||||
const isHome = location.pathname === '/';
|
||||
|
||||
useEffect(() => {
|
||||
setIsMenuOpen(false);
|
||||
@@ -33,39 +29,58 @@ export const Header = () => {
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className={cn(
|
||||
'fixed inset-x-0 top-0 z-50 transition-all duration-500',
|
||||
isScrolled ? 'bg-white/95 shadow-lg backdrop-blur-sm' : 'bg-transparent',
|
||||
isHome ? 'bg-transparent' : 'bg-black',
|
||||
)}
|
||||
>
|
||||
<div className="mx-auto flex max-w-6xl items-center justify-between px-6 py-4 lg:px-8">
|
||||
<Link to="/" className="flex items-center">
|
||||
<div className="flex w-full items-center justify-between px-6 py-4 sm:px-10 lg:px-16">
|
||||
<Link
|
||||
to="/"
|
||||
className="flex items-center"
|
||||
onClick={() => {
|
||||
if (location.pathname === '/') {
|
||||
const mainElement = document.querySelector('main');
|
||||
if (mainElement instanceof HTMLElement && typeof mainElement.scrollTo === 'function') {
|
||||
mainElement.scrollTo({ top: 0, left: 0, behavior: 'smooth' });
|
||||
} else {
|
||||
window.scrollTo({ top: 0, behavior: 'smooth' });
|
||||
}
|
||||
}
|
||||
}}
|
||||
>
|
||||
<img
|
||||
src="/images/geomind_logo.png"
|
||||
alt="Geomind logo"
|
||||
className="h-12 w-auto object-contain"
|
||||
className="h-8 w-auto object-contain"
|
||||
/>
|
||||
</Link>
|
||||
<div className="flex items-center gap-4 sm:gap-6">
|
||||
<nav className="hidden items-center gap-8 md:flex">
|
||||
{navItems.map(({ label, to }) => (
|
||||
<NavLink
|
||||
key={to}
|
||||
to={to}
|
||||
className={({ isActive }) =>
|
||||
cn(
|
||||
'text-sm font-medium uppercase tracking-wide text-slate-500 transition-colors duration-300',
|
||||
isActive && 'text-brand-600',
|
||||
)
|
||||
}
|
||||
onMouseEnter={() => setHoveredNav(to)}
|
||||
onMouseLeave={() => setHoveredNav(null)}
|
||||
onFocus={() => setHoveredNav(to)}
|
||||
onBlur={() => setHoveredNav(null)}
|
||||
className={({ isActive }) => {
|
||||
const isHovered = hoveredNav === to;
|
||||
return cn(
|
||||
'text-sm font-semibold uppercase tracking-wide transition-colors duration-300 text-white hover:!text-brand-500 focus-visible:!text-brand-500',
|
||||
(isActive || isHovered) && '!text-brand-500',
|
||||
);
|
||||
}}
|
||||
>
|
||||
{label}
|
||||
</NavLink>
|
||||
))}
|
||||
<a
|
||||
href="mailto:support@threefold.tech"
|
||||
className="rounded-full border border-brand-200 bg-white px-4 py-2 text-sm font-semibold text-brand-700 shadow-subtle transition-all duration-300 hover:-translate-y-0.5 hover:border-brand-700 hover:bg-brand-700 hover:text-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-300 focus-visible:ring-offset-2"
|
||||
>
|
||||
Contact
|
||||
</a>
|
||||
</nav>
|
||||
<button
|
||||
onClick={() => setIsContactFormOpen(true)}
|
||||
className={cn(buttonBaseClass, 'hidden px-4 py-2 md:inline-flex')}
|
||||
>
|
||||
GET IN TOUCH
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
aria-label="Toggle navigation"
|
||||
@@ -75,25 +90,29 @@ export const Header = () => {
|
||||
<span className="relative block h-5 w-6">
|
||||
<span
|
||||
className={cn(
|
||||
'absolute left-0 top-1 h-0.5 w-full bg-ink transition-all duration-300',
|
||||
'absolute left-0 top-1 h-0.5 w-full transition-all duration-300',
|
||||
'bg-white',
|
||||
isMenuOpen && 'translate-y-2 rotate-45',
|
||||
)}
|
||||
/>
|
||||
<span
|
||||
className={cn(
|
||||
'absolute left-0 top-3 h-0.5 w-full bg-ink transition-all duration-300',
|
||||
'absolute left-0 top-3 h-0.5 w-full transition-all duration-300',
|
||||
'bg-white',
|
||||
isMenuOpen && 'opacity-0',
|
||||
)}
|
||||
/>
|
||||
<span
|
||||
className={cn(
|
||||
'absolute left-0 top-5 h-0.5 w-4 bg-ink transition-all duration-300',
|
||||
'absolute left-0 top-5 h-0.5 w-4 transition-all duration-300',
|
||||
'bg-white',
|
||||
isMenuOpen && 'left-0 top-3 w-full -rotate-45',
|
||||
)}
|
||||
/>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<AnimatePresence>
|
||||
{isMenuOpen && (
|
||||
<motion.nav
|
||||
@@ -101,33 +120,42 @@ export const Header = () => {
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
exit={{ opacity: 0, y: -16 }}
|
||||
transition={{ duration: 0.25, ease: 'easeOut' }}
|
||||
className="border-t border-slate-100 bg-white/95 px-6 py-4 shadow-lg md:hidden"
|
||||
className={cn('px-6 py-4 shadow-lg border-t border-white/10 bg-black md:hidden')}
|
||||
>
|
||||
<div className="mx-auto flex max-w-6xl flex-col gap-4">
|
||||
<div className="flex flex-col gap-4">
|
||||
{navItems.map(({ label, to }) => (
|
||||
<NavLink
|
||||
key={to}
|
||||
to={to}
|
||||
className={({ isActive }) =>
|
||||
cn(
|
||||
'text-base font-medium uppercase tracking-wide text-slate-600',
|
||||
isActive && 'text-brand-700',
|
||||
'text-base font-semibold uppercase tracking-wide text-white transition-colors duration-300',
|
||||
isActive && 'text-brand-500',
|
||||
)
|
||||
}
|
||||
>
|
||||
{label}
|
||||
</NavLink>
|
||||
))}
|
||||
<a
|
||||
href="mailto:support@threefold.tech"
|
||||
className="rounded-full border border-brand-200 bg-brand-600 px-4 py-2 text-center text-sm font-semibold text-white shadow-subtle transition-colors duration-300 hover:bg-brand-700 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-300 focus-visible:ring-offset-2"
|
||||
<button
|
||||
onClick={() => {
|
||||
setIsContactFormOpen(true);
|
||||
setIsMenuOpen(false);
|
||||
}}
|
||||
className={cn(buttonBaseClass, 'flex w-full justify-center px-4 py-2 text-center')}
|
||||
>
|
||||
Contact
|
||||
</a>
|
||||
GET IN TOUCH
|
||||
</button>
|
||||
</div>
|
||||
</motion.nav>
|
||||
)}
|
||||
</AnimatePresence>
|
||||
<ContactForm
|
||||
isOpen={isContactFormOpen}
|
||||
onClose={() => setIsContactFormOpen(false)}
|
||||
title="Get in Touch"
|
||||
formType="contact"
|
||||
/>
|
||||
</motion.header>
|
||||
);
|
||||
};
|
||||
|
@@ -1,24 +1,46 @@
|
||||
import { type ReactNode } from 'react';
|
||||
import { useLocation } from 'react-router-dom';
|
||||
import { Header } from './Header';
|
||||
import { Footer } from './Footer';
|
||||
import { ScrollToTop } from './ScrollToTop';
|
||||
import { cn } from '../../lib/cn';
|
||||
|
||||
type LayoutProps = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
export const Layout = ({ children }: LayoutProps) => {
|
||||
return (
|
||||
<div className="relative min-h-screen overflow-hidden bg-gradient-to-br from-slate-50 via-white to-brand-50/50">
|
||||
<ScrollToTop />
|
||||
{/* Decorative gradient blurs */}
|
||||
<div className="pointer-events-none fixed -top-32 left-6 h-80 w-80 rounded-full bg-brand-200/40 blur-3xl lg:left-24" />
|
||||
<div className="pointer-events-none fixed top-1/3 right-10 h-96 w-96 rounded-full bg-indigo-200/30 blur-3xl lg:right-24" />
|
||||
<div className="pointer-events-none fixed bottom-1/4 left-1/4 h-72 w-72 rounded-full bg-brand-200/30 blur-3xl" />
|
||||
const { pathname } = useLocation();
|
||||
const isHome = pathname === '/';
|
||||
const darkRoutes = ['/about', '/technology', '/usecases'];
|
||||
const isDarkPage = darkRoutes.some((route) => pathname.startsWith(route));
|
||||
|
||||
const isAbout = pathname.startsWith('/about');
|
||||
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
'relative min-h-screen',
|
||||
isDarkPage ? 'bg-black text-slate-100' : 'bg-mist text-ink',
|
||||
!isHome && 'overflow-hidden',
|
||||
)}
|
||||
>
|
||||
<ScrollToTop />
|
||||
<Header />
|
||||
<main className="relative z-10 mx-auto max-w-6xl px-6 pb-24 pt-28 lg:px-8 lg:pt-32">{children}</main>
|
||||
<Footer />
|
||||
<main
|
||||
className={cn(
|
||||
'relative z-10',
|
||||
isHome
|
||||
? 'h-screen overflow-x-hidden overflow-y-scroll scroll-smooth snap-y snap-mandatory'
|
||||
: cn(
|
||||
'pb-24 pt-28 lg:pt-32',
|
||||
isAbout ? 'w-full px-0' : 'mx-auto max-w-6xl px-6 lg:px-8',
|
||||
),
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
</main>
|
||||
{!isHome && <Footer />}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@@ -7,6 +7,15 @@ export const ScrollToTop = () => {
|
||||
useEffect(() => {
|
||||
const animationFrame = window.requestAnimationFrame(() => {
|
||||
window.scrollTo({ top: 0, left: 0, behavior: 'auto' });
|
||||
const mainElement = document.querySelector('main');
|
||||
if (mainElement instanceof HTMLElement) {
|
||||
if (typeof mainElement.scrollTo === 'function') {
|
||||
mainElement.scrollTo({ top: 0, left: 0, behavior: 'auto' });
|
||||
} else {
|
||||
mainElement.scrollTop = 0;
|
||||
mainElement.scrollLeft = 0;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return () => window.cancelAnimationFrame(animationFrame);
|
||||
|
199
src/components/ui/ContactForm.tsx
Normal file
@@ -0,0 +1,199 @@
|
||||
import { motion, AnimatePresence } from 'framer-motion';
|
||||
import { useState } from 'react';
|
||||
import { X, Send, CheckCircle } from 'lucide-react';
|
||||
|
||||
interface ContactFormProps {
|
||||
isOpen: boolean;
|
||||
onClose: () => void;
|
||||
title?: string;
|
||||
formType?: 'investor' | 'partner' | 'contact' | 'deploy' | 'offtake';
|
||||
}
|
||||
|
||||
export default function ContactForm({ isOpen, onClose, title = "Get in Touch", formType }: ContactFormProps) {
|
||||
const [formData, setFormData] = useState({
|
||||
name: '',
|
||||
email: '',
|
||||
company: '',
|
||||
message: '',
|
||||
});
|
||||
const [isSubmitting, setIsSubmitting] = useState(false);
|
||||
const [isSubmitted, setIsSubmitted] = useState(false);
|
||||
|
||||
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
|
||||
const { name, value } = e.target;
|
||||
setFormData(prev => ({
|
||||
...prev,
|
||||
[name]: value,
|
||||
}));
|
||||
};
|
||||
|
||||
const handleSubmit = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
setIsSubmitting(true);
|
||||
|
||||
// TODO: Add emailjs integration later
|
||||
// Simulate API call
|
||||
setTimeout(() => {
|
||||
console.log('Form submitted:', { ...formData, formType });
|
||||
setIsSubmitted(true);
|
||||
setTimeout(() => {
|
||||
setIsSubmitted(false);
|
||||
setFormData({ name: '', email: '', company: '', message: '' });
|
||||
onClose();
|
||||
}, 3000);
|
||||
setIsSubmitting(false);
|
||||
}, 1000);
|
||||
};
|
||||
|
||||
const getPlaceholderMessage = () => {
|
||||
switch (formType) {
|
||||
case 'investor':
|
||||
return "Tell us about your investment interests and how we can collaborate.";
|
||||
case 'partner':
|
||||
return "Tell us about your partnership interests and how we can work together.";
|
||||
case 'deploy':
|
||||
return "Tell us about your deployment capacity plans and requirements.";
|
||||
case 'offtake':
|
||||
return "Tell us about your capacity offtake requirements.";
|
||||
default:
|
||||
return "Let us know how we can help.";
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<AnimatePresence>
|
||||
{isOpen && (
|
||||
<motion.div
|
||||
className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/70 backdrop-blur-sm"
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}
|
||||
exit={{ opacity: 0 }}
|
||||
onClick={onClose}
|
||||
>
|
||||
<motion.div
|
||||
className="bg-slate-950 rounded-2xl shadow-2xl w-full max-w-md relative overflow-hidden border border-white/10"
|
||||
initial={{ scale: 0.9, opacity: 0 }}
|
||||
animate={{ scale: 1, opacity: 1 }}
|
||||
exit={{ scale: 0.9, opacity: 0 }}
|
||||
transition={{ type: "spring", damping: 25, stiffness: 300 }}
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
{/* Header */}
|
||||
<div className="flex items-center justify-between p-6 border-b border-white/10">
|
||||
<h3 className="text-xl font-bold text-white">
|
||||
{title}
|
||||
</h3>
|
||||
<button
|
||||
onClick={onClose}
|
||||
className="p-2 hover:bg-slate-800 rounded-lg transition-colors"
|
||||
>
|
||||
<X className="w-5 h-5 text-slate-400" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{/* Form */}
|
||||
<div className="p-6">
|
||||
{isSubmitted ? (
|
||||
<motion.div
|
||||
className="text-center py-8"
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
>
|
||||
<CheckCircle className="w-16 h-16 text-brand-400 mx-auto mb-4" />
|
||||
<h4 className="text-lg font-semibold text-white mb-2">
|
||||
Thank you!
|
||||
</h4>
|
||||
<p className="text-slate-300">
|
||||
We'll get back to you soon.
|
||||
</p>
|
||||
</motion.div>
|
||||
) : (
|
||||
<form onSubmit={handleSubmit} className="space-y-4">
|
||||
<div>
|
||||
<label htmlFor="name" className="block text-sm font-medium text-slate-300 mb-1">
|
||||
Full Name *
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
id="name"
|
||||
name="name"
|
||||
value={formData.name}
|
||||
onChange={handleInputChange}
|
||||
required
|
||||
className="w-full px-4 py-3 border border-white/10 rounded-lg focus:ring-2 focus:ring-brand-400 focus:border-transparent bg-slate-900 text-white placeholder-slate-500"
|
||||
placeholder="Your full name"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="email" className="block text-sm font-medium text-slate-300 mb-1">
|
||||
Email Address *
|
||||
</label>
|
||||
<input
|
||||
type="email"
|
||||
id="email"
|
||||
name="email"
|
||||
value={formData.email}
|
||||
onChange={handleInputChange}
|
||||
required
|
||||
className="w-full px-4 py-3 border border-white/10 rounded-lg focus:ring-2 focus:ring-brand-400 focus:border-transparent bg-slate-900 text-white placeholder-slate-500"
|
||||
placeholder="your.email@company.com"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="company" className="block text-sm font-medium text-slate-300 mb-1">
|
||||
Company
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
id="company"
|
||||
name="company"
|
||||
value={formData.company}
|
||||
onChange={handleInputChange}
|
||||
className="w-full px-4 py-3 border border-white/10 rounded-lg focus:ring-2 focus:ring-brand-400 focus:border-transparent bg-slate-900 text-white placeholder-slate-500"
|
||||
placeholder="Your company name"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="message" className="block text-sm font-medium text-slate-300 mb-1">
|
||||
Message
|
||||
</label>
|
||||
<textarea
|
||||
id="message"
|
||||
name="message"
|
||||
value={formData.message}
|
||||
onChange={handleInputChange}
|
||||
rows={4}
|
||||
className="w-full px-4 py-3 border border-white/10 rounded-lg focus:ring-2 focus:ring-brand-400 focus:border-transparent bg-slate-900 text-white placeholder-slate-500 resize-none"
|
||||
placeholder={getPlaceholderMessage()}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<button
|
||||
type="submit"
|
||||
disabled={isSubmitting}
|
||||
className="w-full inline-flex items-center justify-center gap-2 rounded-full border border-brand-200/60 bg-white px-6 py-3 text-sm font-semibold text-black shadow-[0_18px_40px_-26px_rgba(15,23,42,0.55)] transition-all duration-300 hover:-translate-y-0.5 hover:border-black hover:bg-brand-600 hover:text-white hover:shadow-[0_26px_52px_-32px_rgba(90,107,241,0.55)] disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:translate-y-0 disabled:hover:bg-white disabled:hover:text-black"
|
||||
>
|
||||
{isSubmitting ? (
|
||||
<>
|
||||
<div className="w-5 h-5 border-2 border-black/30 border-t-black rounded-full animate-spin" />
|
||||
<span>Sending...</span>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<Send className="w-5 h-5" />
|
||||
<span>Send Message</span>
|
||||
</>
|
||||
)}
|
||||
</button>
|
||||
</form>
|
||||
)}
|
||||
</div>
|
||||
</motion.div>
|
||||
</motion.div>
|
||||
)}
|
||||
</AnimatePresence>
|
||||
);
|
||||
}
|
@@ -1,6 +1,7 @@
|
||||
import { type ReactNode } from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { cn } from '../../lib/cn';
|
||||
import { buttonBaseClass } from '../../lib/buttonStyles';
|
||||
|
||||
type PrimaryButtonProps = {
|
||||
to?: string;
|
||||
@@ -11,16 +12,10 @@ type PrimaryButtonProps = {
|
||||
target?: string;
|
||||
};
|
||||
|
||||
const styles: Record<
|
||||
NonNullable<PrimaryButtonProps['variant']>,
|
||||
string
|
||||
> = {
|
||||
solid:
|
||||
'bg-brand-600 text-white shadow-subtle hover:bg-brand-500 hover:text-white hover:shadow-lg',
|
||||
outline:
|
||||
'border border-brand-200 bg-white text-brand-700 hover:border-brand-400 hover:bg-white/95 hover:text-brand-700 hover:shadow-md',
|
||||
ghost:
|
||||
'bg-transparent text-brand-600 hover:bg-brand-50/80 hover:text-brand-700',
|
||||
const styles: Record<NonNullable<PrimaryButtonProps['variant']>, string> = {
|
||||
solid: buttonBaseClass,
|
||||
outline: buttonBaseClass,
|
||||
ghost: buttonBaseClass,
|
||||
};
|
||||
|
||||
export const PrimaryButton = ({
|
||||
@@ -31,8 +26,7 @@ export const PrimaryButton = ({
|
||||
className,
|
||||
target,
|
||||
}: PrimaryButtonProps) => {
|
||||
const baseClasses =
|
||||
'inline-flex items-center justify-center rounded-full px-5 py-2 text-sm font-semibold transition-all duration-300 hover:-translate-y-0.5 active:translate-y-0 focus:outline-none focus-visible:ring-2 focus-visible:ring-brand-300 focus-visible:ring-offset-2';
|
||||
const baseClasses = buttonBaseClass;
|
||||
|
||||
if (to) {
|
||||
return (
|
||||
|
@@ -5,8 +5,8 @@
|
||||
@tailwind utilities;
|
||||
|
||||
:root {
|
||||
color: #111827;
|
||||
background-color: #f6f8fb;
|
||||
color: #000000;
|
||||
background-color: rgb(252 252 246);
|
||||
}
|
||||
|
||||
html,
|
||||
|
5
src/lib/buttonStyles.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export const buttonBaseClass =
|
||||
'inline-flex items-center justify-center rounded-full border border-brand-200/60 bg-white px-6 py-3 text-sm font-semibold text-black shadow-[0_18px_40px_-26px_rgba(15,23,42,0.55)] transition-all duration-300 hover:-translate-y-0.5 hover:border-black hover:bg-brand-600 hover:text-white hover:shadow-[0_26px_52px_-32px_rgba(90,107,241,0.55)] focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-300 focus-visible:ring-offset-2 focus-visible:ring-offset-black';
|
||||
|
||||
export const buttonGhostLightClass =
|
||||
'inline-flex items-center justify-center rounded-full border border-white/30 bg-transparent px-6 py-3 text-sm font-semibold text-white transition-all duration-300 hover:-translate-y-0.5 hover:border-white hover:bg-white hover:text-black focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-white/40 focus-visible:ring-offset-2 focus-visible:ring-offset-transparent';
|
@@ -1,13 +1,15 @@
|
||||
import { AboutHero } from './components/AboutHero';
|
||||
import { MissionVision } from './components/MissionVision';
|
||||
import { TrackRecord } from './components/TrackRecord';
|
||||
import { AboutCta } from './components/AboutCta';
|
||||
|
||||
export const AboutPage = () => {
|
||||
return (
|
||||
<div className="space-y-12 lg:space-y-16">
|
||||
<div className="space-y-12 text-slate-100 lg:space-y-16">
|
||||
<AboutHero />
|
||||
<MissionVision />
|
||||
<TrackRecord />
|
||||
<AboutCta />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
68
src/pages/about/components/AboutCta.tsx
Normal file
@@ -0,0 +1,68 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { cn } from '../../../lib/cn';
|
||||
import { buttonBaseClass } from '../../../lib/buttonStyles';
|
||||
|
||||
export const AboutCta = () => {
|
||||
return (
|
||||
<section className="snap-start bg-black pt-10 sm:pt-16 lg:pt-20">
|
||||
<div className="mx-auto flex w-full max-w-5xl flex-col items-center gap-8 px-6 pb-20 text-center sm:gap-10 sm:px-10 sm:pb-32 lg:pb-40">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="flex items-center justify-center gap-4"
|
||||
>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<span className="text-xs font-semibold uppercase tracking-[0.4em] text-white">
|
||||
Sovereign Agentic Cloud
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</motion.div>
|
||||
<motion.h3
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.7, ease: 'easeOut', delay: 0.15 }}
|
||||
className="text-4xl font-medium leading-tight text-white sm:text-5xl"
|
||||
>
|
||||
See What We're Building Next
|
||||
</motion.h3>
|
||||
<motion.p
|
||||
initial={{ opacity: 0, y: 16 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.7, ease: 'easeOut', delay: 0.25 }}
|
||||
className="max-w-2xl text-lg text-white/70"
|
||||
>
|
||||
We're enabling sovereign agentic cloud for everyone, unlocking infrastructure that is
|
||||
locally owned, globally connected, and ready for the next wave of intelligent workloads.
|
||||
</motion.p>
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 12 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut', delay: 0.35 }}
|
||||
className="w-full sm:w-auto"
|
||||
>
|
||||
<Link
|
||||
to="/technology"
|
||||
className={cn(
|
||||
buttonBaseClass,
|
||||
'w-full px-10 py-4 font-bold uppercase tracking-[0.35em] sm:w-auto',
|
||||
)}
|
||||
>
|
||||
Explore Our Tech
|
||||
</Link>
|
||||
</motion.div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
@@ -1,34 +1,116 @@
|
||||
import { motion } from 'framer-motion';
|
||||
|
||||
const records = [
|
||||
{
|
||||
period: '1997–2002',
|
||||
title: 'World Records for Web Hosting',
|
||||
description: 'Kept UEFA, NASA, and World Cup traffic online with continent-scale uptime.',
|
||||
layout: 'lg:col-span-3 lg:row-span-2',
|
||||
showStream: true,
|
||||
},
|
||||
{
|
||||
period: '2005',
|
||||
title: 'The First Backup Data Duplication System in the World',
|
||||
description: 'Cut enterprise backup footprints by up to 100× before dedupe was mainstream.',
|
||||
layout: 'lg:col-span-3',
|
||||
},
|
||||
{
|
||||
period: '2008',
|
||||
title: 'One of the First Cloud Systems',
|
||||
description: 'Shipped the first Virtual Private Data Center and proved elastic compute trust.',
|
||||
layout: 'lg:col-span-3',
|
||||
},
|
||||
{
|
||||
period: '2010',
|
||||
title: 'The First Multi-Site Consistent Database',
|
||||
description: 'Delivered failover that preserved every transaction across sovereign sites.',
|
||||
layout: 'lg:col-span-3 lg:row-span-2',
|
||||
showStream: true,
|
||||
},
|
||||
{
|
||||
period: '2012',
|
||||
title: 'The First Unbreakable and Distributed Storage System',
|
||||
description: 'Built tamper-proof storage that used 10× less energy and never went dark.',
|
||||
layout: 'lg:col-span-3',
|
||||
},
|
||||
{
|
||||
period: '2017',
|
||||
title: 'Probably the First Proof of Block Stake Blockchain',
|
||||
description: 'Merged staking and settlement in one move, years before the market caught up.',
|
||||
layout: 'lg:col-span-3',
|
||||
},
|
||||
] as const;
|
||||
|
||||
export const AboutHero = () => {
|
||||
return (
|
||||
<section className="relative overflow-hidden rounded-3xl text-white">
|
||||
<section className="relative isolate bg-black px-6 pb-16 pt-0 sm:px-10 sm:pb-20 sm:pt-2 lg:px-16 lg:pb-24 lg:pt-4">
|
||||
<div className="mx-auto w-full max-w-7xl">
|
||||
<div className="grid gap-8 sm:gap-10 lg:grid-cols-[minmax(360px,420px)_minmax(0,1fr)] lg:items-stretch lg:gap-12 xl:grid-cols-[minmax(400px,500px)_minmax(0,1fr)]">
|
||||
<div className="relative h-full">
|
||||
<div className="group relative flex h-full flex-col overflow-hidden rounded-[32px] border border-white/10 bg-gradient-to-br from-[#06091d] via-[#0e1540] to-[#1c1448] text-white shadow-[0_35px_90px_-45px_rgba(15,23,42,0.95)] transition-all duration-500 hover:-translate-y-1.5 hover:border-brand-400/60 hover:shadow-[0_40px_120px_-45px_rgba(99,102,241,0.55)]">
|
||||
<img
|
||||
src="/images/hometech2.jpg"
|
||||
alt=""
|
||||
className="absolute inset-0 h-full w-full object-cover"
|
||||
className="absolute inset-0 h-full w-full object-cover opacity-40 mix-blend-screen transition-transform duration-700 group-hover:scale-105"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-[#0f172a]/80 via-[#1e1b4b]/70 to-[#312e81]/80" />
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-white/10 via-white/5 to-transparent mix-blend-overlay transition-opacity duration-500 group-hover:opacity-90" />
|
||||
<div className="absolute inset-0 bg-[radial-gradient(circle_at_top,_rgba(79,70,229,0.4),_transparent_60%)] opacity-90 transition-opacity duration-500 group-hover:opacity-100" />
|
||||
<div className="absolute top-[-25%] right-[-5%] h-[420px] w-[420px] rounded-full bg-[#6366f1]/30 blur-3xl transition-transform duration-700 group-hover:scale-110" />
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 32 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="relative z-10 px-6 py-20 sm:px-10 lg:px-16 lg:py-24"
|
||||
className="relative z-10 flex flex-1 flex-col items-center px-6 py-20 text-center sm:px-12 lg:px-16 lg:py-24"
|
||||
>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-white/70">
|
||||
About GeoMind
|
||||
</p>
|
||||
<h1 className="mt-6 text-3xl font-semibold leading-tight sm:text-4xl lg:text-5xl">
|
||||
<div className="flex w-full items-center justify-center gap-4 text-[0.7rem] font-medium uppercase tracking-[0.32em] text-white/70">
|
||||
<span className="h-px w-12 bg-white/25 transition-colors duration-500 group-hover:bg-white/50 sm:w-14 lg:w-16" />
|
||||
<span className="text-white/80">About GeoMind</span>
|
||||
<span className="h-px w-12 bg-white/25 transition-colors duration-500 group-hover:bg-white/50 sm:w-14 lg:w-16" />
|
||||
</div>
|
||||
<h1 className="mt-9 max-w-2xl text-4xl font-semibold tracking-tight text-white sm:text-[2.75rem] lg:text-[3.25rem] lg:leading-[1.05]">
|
||||
We Know a Thing or Two About Datacenters
|
||||
</h1>
|
||||
<p className="mt-6 max-w-3xl text-base text-white/75 sm:text-lg">
|
||||
For decades, we've built the technologies that power the internet, from record-breaking
|
||||
web hosting to unbreakable cloud systems. Now, we're redefining what datacenters stand
|
||||
for: secure, sovereign, and profitable infrastructure designed for people, the planet,
|
||||
and the AI-powered future.
|
||||
<p className="mt-5 max-w-2xl text-base leading-relaxed text-white/75 sm:text-lg">
|
||||
Decades of building the internet's backbone, from record-breaking hosting to
|
||||
unbreakable cloud systems, now shape how we define the datacenter: secure, sovereign,
|
||||
profitable infrastructure built for people and planet.
|
||||
</p>
|
||||
</motion.div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="grid h-full grid-cols-1 gap-3 sm:grid-cols-2 lg:auto-rows-[minmax(120px,_1fr)] lg:grid-cols-6">
|
||||
{records.map((record, index) => (
|
||||
<motion.article
|
||||
key={record.title}
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.05 }}
|
||||
className={`group relative flex h-full flex-col overflow-hidden rounded-3xl border border-white/10 bg-white/[0.04] p-5 ${
|
||||
record.showStream ? 'pb-16 sm:pb-5' : ''
|
||||
} backdrop-blur transition-all duration-300 hover:-translate-y-1.5 hover:border-brand-400/60 hover:bg-white/[0.08] hover:shadow-[0_32px_80px_-50px_rgba(56,189,248,0.55)] ${record.layout}`}
|
||||
>
|
||||
<span className="block text-[0.68rem] font-semibold uppercase tracking-[0.42em] text-brand-200/80">
|
||||
{record.period}
|
||||
</span>
|
||||
<h3 className="mt-2 text-lg font-semibold leading-snug text-white">{record.title}</h3>
|
||||
<p className="mt-3 text-sm leading-6 text-slate-200">{record.description}</p>
|
||||
{record.showStream && (
|
||||
<div className="pointer-events-none absolute inset-x-5 bottom-6 sm:bottom-5 h-3 overflow-hidden rounded-full border border-white/10 bg-white/[0.06]">
|
||||
<div className="absolute inset-0 bg-[radial-gradient(circle_at_center,rgba(59,130,246,0.45),transparent_72%)] opacity-70" />
|
||||
<div className="absolute inset-0 bg-[linear-gradient(90deg,rgba(56,189,248,0)_0%,rgba(99,102,241,0.75)_50%,rgba(56,189,248,0)_100%)] opacity-90 [background-size:200%_100%] animate-data-stream" />
|
||||
<div
|
||||
className="absolute inset-0 bg-[linear-gradient(90deg,rgba(255,255,255,0)_0%,rgba(255,255,255,0.55)_12%,rgba(255,255,255,0)_40%)] mix-blend-screen opacity-70 [background-size:220%_100%] animate-data-stream"
|
||||
style={{ animationDelay: '1.4s' }}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
<div className="absolute -right-12 -top-12 h-24 w-24 rounded-full bg-brand-500/10 blur-3xl transition-transform duration-500 group-hover:scale-110" />
|
||||
</motion.article>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
@@ -1,58 +1,70 @@
|
||||
export const MissionVision = () => {
|
||||
return (
|
||||
<section className="relative py-20 lg:py-28">
|
||||
<section className="relative py-20 text-slate-100 lg:py-28">
|
||||
<div className="relative mx-auto max-w-6xl px-6 lg:px-12">
|
||||
<div className="flex flex-col gap-12 rounded-[32px] bg-gradient-to-br from-white via-white to-brand-50/40 p-8 shadow-xl ring-1 ring-brand-100/40 sm:p-12 lg:grid lg:grid-cols-[minmax(0,0.9fr)_1fr] lg:items-center">
|
||||
<div className="order-1 lg:order-none">
|
||||
<figure className="relative mx-auto max-w-sm overflow-hidden rounded-[28px] bg-gradient-to-br from-emerald-100/50 via-white to-brand-100/40 p-6 shadow-lg ring-1 ring-brand-200/40">
|
||||
<div className="absolute inset-0 rounded-[24px] bg-[radial-gradient(circle_at_20%_20%,rgba(56,189,248,0.22),transparent_55%),radial-gradient(circle_at_80%_40%,rgba(59,130,246,0.18),transparent_60%)]" />
|
||||
<img
|
||||
src="/images/ceo-kristof.png"
|
||||
alt="Kristof De Spiegeleer, Founder and CEO of GeoMind"
|
||||
className="relative z-10 mx-auto w-full max-w-xs object-cover"
|
||||
/>
|
||||
<figcaption className="relative z-10 mt-6 text-center text-sm font-medium text-slate-500">
|
||||
Kristof De Spiegeleer — Founder & CEO
|
||||
</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
<div className="relative flex flex-col gap-8 rounded-3xl bg-white/90 p-8 shadow-inner ring-1 ring-brand-100/50 backdrop-blur">
|
||||
<div className="flex items-center gap-4">
|
||||
<div className="h-px flex-1 bg-gradient-to-r from-brand-500/50 via-brand-300/50 to-transparent" />
|
||||
<span className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-600">
|
||||
Technology with Purpose
|
||||
</span>
|
||||
</div>
|
||||
<div className="relative">
|
||||
<div className="flex items-center justify-center gap-4">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="float-left mr-3 -mt-3 text-6xl font-serif text-brand-500/25 leading-none"
|
||||
>
|
||||
“
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<span className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-300">
|
||||
Mission & Vision
|
||||
</span>
|
||||
<div className="space-y-6 text-base leading-8 text-slate-600 sm:text-lg sm:leading-8">
|
||||
<p className="italic text-brand-700">
|
||||
When we first started, our goal was simple, to build the foundation for the world’s digital future.
|
||||
Over time, we realized that technology isn’t just about performance or scale, it’s about purpose.
|
||||
It’s about people, communities, and the planet we share.
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</div>
|
||||
<div className="mt-8 grid gap-12 lg:grid-cols-[1.1fr,0.9fr] lg:items-center">
|
||||
<div className="space-y-6">
|
||||
<h2 className="text-3xl font-semibold text-white sm:text-4xl">
|
||||
Prioritizing people and planet for a sovereign cloud future
|
||||
</h2>
|
||||
<p className="text-base text-slate-300 sm:text-lg">
|
||||
GeoMind builds inclusive digital infrastructure because <strong>access to compute should be a
|
||||
fundamental human right</strong>. We engineer systems that keep communities in control of their
|
||||
data, reward local participation, and run with a lighter footprint on the planet.
|
||||
</p>
|
||||
<p>
|
||||
Today, we’re creating the next generation of datacenters, designed not only for the AI era but for a
|
||||
sustainable, inclusive future. Our mission is clear: to make digital decentralized infrastructure a
|
||||
universal right, accessible and responsible in equal measure.
|
||||
<div className="space-y-4 rounded-3xl border border-white/10 bg-black/60 p-6 transition-all duration-300 hover:-translate-y-1 hover:border-brand-300/40 hover:bg-white/5 hover:shadow-[0_30px_60px_-45px_rgba(56,189,248,0.55)]">
|
||||
<p className="text-sm font-semibold uppercase tracking-[0.28em] text-brand-200">
|
||||
What drives us
|
||||
</p>
|
||||
<p>
|
||||
We’ve spent decades pioneering technologies that power the internet. Now, we’re redefining what
|
||||
datacenters stand for, combining efficiency, sovereignty, and sustainability to serve both humanity and
|
||||
innovation.
|
||||
<ul className="space-y-3 text-sm text-slate-300 sm:text-base">
|
||||
<li>
|
||||
<span className="font-semibold text-white">People first:</span> compute that is
|
||||
open, fair, and economically empowering for every operator and offtaker.
|
||||
</li>
|
||||
<li>
|
||||
<span className="font-semibold text-white">Planet aligned:</span> efficient,
|
||||
sovereign infrastructure that respects resources and communities.
|
||||
</li>
|
||||
<li>
|
||||
<span className="font-semibold text-white">Authentic by design:</span> transparent
|
||||
governance and incentives that keep trust at the center of every deployment.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p className="text-sm text-slate-400">
|
||||
This is the lens through which we design every product decision, from hardware
|
||||
tiers to marketplace economics.
|
||||
</p>
|
||||
</div>
|
||||
<figure className="group relative overflow-hidden rounded-3xl border border-white/10 transition-all duration-500 hover:-translate-y-1.5 hover:border-brand-300/40 hover:shadow-[0_32px_70px_-45px_rgba(79,70,229,0.65)]">
|
||||
<img
|
||||
src="/images/cloud_sky.png"
|
||||
alt="Sunrise light shining through layered clouds above a resilient skyline."
|
||||
className="h-full w-full object-cover transition-transform duration-500 group-hover:scale-105"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-black/70 via-black/40 to-brand-500/30" />
|
||||
<div className="absolute inset-0 flex flex-col items-center justify-end gap-2 p-8 text-center">
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.28em] text-brand-200">
|
||||
People • Planet • Authenticity
|
||||
</p>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.28em] text-brand-200">
|
||||
Open-source • Simplicity
|
||||
</p>
|
||||
</div>
|
||||
<div className="border-t border-slate-200 pt-6 text-sm">
|
||||
<p className="font-semibold text-brand-700">Kristof De Spiegeleer</p>
|
||||
<p className="text-slate-500">Founder & CEO, GeoMind</p>
|
||||
</div>
|
||||
</div>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
@@ -1,68 +1,104 @@
|
||||
import { motion } from 'framer-motion';
|
||||
|
||||
const records = [
|
||||
const exits = [
|
||||
{
|
||||
title: 'World Records for Web Hosting (1997-2002)',
|
||||
description:
|
||||
'Our team started the Internet hosting and data center business in Europe. We hosted some of the largest websites in the world including UEFA, NASA, World Cup.',
|
||||
year: '2005',
|
||||
company: 'DataCenter Technologies',
|
||||
description: 'Disk-based backup optimization software.',
|
||||
acquiredBy: 'Veritas → Symantec',
|
||||
logo: '/images/exited_company_logos/DataCenter.png',
|
||||
},
|
||||
{
|
||||
title: 'The FIRST Backup Data Duplication system in the world (2005)',
|
||||
description:
|
||||
'Our advancements in this field brought up to 100x benefit compared to the status quo running in data centers at the time.',
|
||||
year: '2005',
|
||||
company: 'Dedigate',
|
||||
description: 'Managed hosting for complex internet infrastructures.',
|
||||
acquiredBy: 'Verizon & Terremark → Equinix',
|
||||
logo: '/images/exited_company_logos/Dedigate.png',
|
||||
},
|
||||
{
|
||||
title: 'One of the FIRST Cloud Systems (2008)',
|
||||
description:
|
||||
'We were one of the pioneers of cloud computing in general. Terms like Virtual Private Data Center were invented by us.',
|
||||
year: '2008',
|
||||
company: 'HostBasket',
|
||||
description: 'Belgium’s largest hosting company.',
|
||||
acquiredBy: 'Telenet',
|
||||
logo: '/images/exited_company_logos/HOSTBASKET.png',
|
||||
},
|
||||
{
|
||||
title: 'The FIRST multi-site consistent database (2010)',
|
||||
description:
|
||||
'We invented a method to store data in a database over multiple sites in such a way data could never be lost, corrupted, or order of updates changed.',
|
||||
year: '2009',
|
||||
company: 'Q-layer',
|
||||
description: 'Automated cloud deployment and virtualization.',
|
||||
acquiredBy: 'Sun Microsystems → Oracle',
|
||||
logo: '/images/exited_company_logos/Q-layer.png',
|
||||
},
|
||||
{
|
||||
title: 'The FIRST unbreakable and distributed storage system (2012)',
|
||||
description:
|
||||
'Not only incorruptible, our system also boasts 10x energy efficiency compared to alternative solutions, marking a significant technological leap.',
|
||||
},
|
||||
{
|
||||
title: 'Probably the FIRST proof of block stake blockchain (2017)',
|
||||
description:
|
||||
'This blockchain was sustainable and scalable and allowed people to transact their stake as well as their digital currency in the same transaction, which still to date is novel.',
|
||||
year: '2015',
|
||||
company: 'Amplidata',
|
||||
description: 'Object storage for public and private clouds.',
|
||||
acquiredBy: 'HGST (Western Digital)',
|
||||
logo: '/images/exited_company_logos/amplidata.png',
|
||||
},
|
||||
];
|
||||
|
||||
export const TrackRecord = () => {
|
||||
return (
|
||||
<section className="py-16 lg:py-24">
|
||||
<div className="mx-auto max-w-3xl text-center">
|
||||
<h2 className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-600">
|
||||
Our Track Record
|
||||
<section className="px-6 pt-16 pb-12 text-slate-100 sm:px-10 lg:px-16 lg:pt-24 lg:pb-16">
|
||||
<div className="mx-auto max-w-4xl text-center">
|
||||
<div className="flex items-center justify-center gap-4">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<h2 className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-300">
|
||||
Proven Track Record
|
||||
</h2>
|
||||
<p className="mt-4 text-3xl font-semibold text-ink sm:text-4xl">
|
||||
Our team has been at the forefront of datacenter and cloud innovation for decades,
|
||||
building systems that were faster, safer, and more scalable than anything before.
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</div>
|
||||
<p className="mt-4 text-3xl font-semibold text-white sm:text-4xl">
|
||||
Our team has built some of the world’s most advanced cloud technologies which were acquired by some of the biggest names in the space.
|
||||
</p>
|
||||
</div>
|
||||
<div className="mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{records.map((record, index) => (
|
||||
|
||||
<div className="mt-12 rounded-3xl border border-white/10 bg-black/60 p-8 shadow-[0_26px_64px_-48px_rgba(0,0,0,0.6)] transition-all duration-300 hover:border-brand-300/40 hover:shadow-[0_36px_90px_-50px_rgba(56,189,248,0.35)]">
|
||||
<div className="grid gap-6 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-5">
|
||||
{exits.map((exit, index) => (
|
||||
<motion.div
|
||||
key={record.title}
|
||||
key={exit.company}
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.25 }}
|
||||
viewport={{ once: true, amount: 0.2 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.05 }}
|
||||
className="flex h-full flex-col rounded-3xl border border-slate-100 bg-white/90 p-8 shadow-subtle backdrop-blur"
|
||||
className="group relative flex flex-col items-center rounded-2xl bg-black/40 p-6 text-center transition-all duration-300 hover:-translate-y-1.5 hover:bg-white/5 hover:shadow-[0_22px_50px_-38px_rgba(56,189,248,0.45)]"
|
||||
>
|
||||
<div className="inline-flex h-10 w-10 items-center justify-center rounded-full bg-brand-50 font-semibold text-brand-600">
|
||||
{index + 1}
|
||||
<span className="text-xs font-semibold uppercase tracking-[0.24em] text-brand-300">
|
||||
{exit.year}
|
||||
</span>
|
||||
{exit.logo && (
|
||||
<div className="mt-4">
|
||||
<div className="mx-auto h-16 w-16 rounded-full bg-gradient-to-br from-brand-500/50 via-brand-400/30 to-transparent p-[2px] transition-transform duration-300 group-hover:scale-105">
|
||||
<div className="flex h-full w-full items-center justify-center overflow-hidden rounded-full bg-white">
|
||||
<img
|
||||
src={exit.logo}
|
||||
alt={`${exit.company} logo`}
|
||||
className="h-14 w-14 object-contain"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<h4 className="mt-4 text-lg font-semibold text-white">{exit.company}</h4>
|
||||
<p className="mt-2 text-sm text-slate-300">{exit.description}</p>
|
||||
<div className="mt-4 flex flex-1 flex-col justify-end">
|
||||
<p className="text-xs font-medium uppercase tracking-[0.2em] text-slate-400">
|
||||
Acquired by
|
||||
</p>
|
||||
<p className="mt-1 text-sm text-white/80">{exit.acquiredBy}</p>
|
||||
</div>
|
||||
<h3 className="mt-6 text-lg font-semibold text-ink">{record.title}</h3>
|
||||
<p className="mt-3 text-sm leading-6 text-slate-600">{record.description}</p>
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
@@ -1,17 +1,121 @@
|
||||
import { HomeHero } from './components/HomeHero';
|
||||
import { CoreTechnology } from './components/CoreTechnology';
|
||||
import { ImpactBanner } from './components/ImpactBanner';
|
||||
import { WhyGeomind } from './components/WhyGeomind';
|
||||
import { FinalCallToAction } from './components/FinalCallToAction';
|
||||
import { useEffect } from 'react';
|
||||
import { HeroSection } from './components/HeroSection';
|
||||
import { ScrollLockedSection } from './components/ScrollLockedSection';
|
||||
import { CtaSection } from './components/CtaSection';
|
||||
import { Footer } from '../../components/layout/Footer';
|
||||
|
||||
const highlightTextClass = 'text-brand-500';
|
||||
|
||||
const sections = [
|
||||
{
|
||||
id: 'datacenter-economy',
|
||||
eyebrow: 'Datacenter Economy',
|
||||
title: (
|
||||
<>
|
||||
The Datacenter Economy,{' '}
|
||||
<span className={highlightTextClass}>Decentralized</span>
|
||||
</>
|
||||
),
|
||||
description:
|
||||
'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',
|
||||
eyebrow: 'Deployment Tiers',
|
||||
title: (
|
||||
<>
|
||||
<span className={highlightTextClass}>Deploy</span> Anywhere, Any Scale
|
||||
</>
|
||||
),
|
||||
description:
|
||||
'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: 'Plug-and-Play',
|
||||
title: (
|
||||
<>
|
||||
Five Primitives, <span className={highlightTextClass}>Zero Dependencies</span>
|
||||
</>
|
||||
),
|
||||
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: 'Glocal Marketplace',
|
||||
title: (
|
||||
<>
|
||||
Local Hardware, <span className={highlightTextClass}>Global</span> Marketplace
|
||||
</>
|
||||
),
|
||||
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: 'Profit',
|
||||
title: (
|
||||
<>
|
||||
<span className={highlightTextClass}>Earn</span> from Idle Capacity
|
||||
</>
|
||||
),
|
||||
description:
|
||||
'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: 'Competitive Advantage',
|
||||
title: (
|
||||
<>
|
||||
<span className={highlightTextClass}>Lower Costs</span>, Competitive Prices
|
||||
</>
|
||||
),
|
||||
description:
|
||||
'Minimal datacenter build costs. Energy-efficient autonomous operation. No enterprise maintenance overhead. Lower OPEX and CAPEX. Your competitive advantage is built in.',
|
||||
showButton: false,
|
||||
},
|
||||
{
|
||||
id: 'instant-demand',
|
||||
eyebrow: 'Offtakers',
|
||||
title: (
|
||||
<>
|
||||
<span className={highlightTextClass}>Built-In</span> Demand
|
||||
</>
|
||||
),
|
||||
description:
|
||||
'Initial enterprise offtake partners are in place. Deploy hardware, connect to marketplace, start earning. No customer acquisition needed.',
|
||||
buttonText: 'See Use Cases',
|
||||
buttonLink: '/usecases',
|
||||
},
|
||||
];
|
||||
|
||||
export const HomePage = () => {
|
||||
useEffect(() => {
|
||||
window.scrollTo({ top: 0, behavior: 'auto' });
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="space-y-12 lg:space-y-16">
|
||||
<HomeHero />
|
||||
<CoreTechnology />
|
||||
<ImpactBanner />
|
||||
<WhyGeomind />
|
||||
<FinalCallToAction />
|
||||
<div className="flex min-h-screen flex-col bg-black text-white">
|
||||
<div className="flex flex-col">
|
||||
<HeroSection />
|
||||
{sections.map((section) => (
|
||||
<ScrollLockedSection key={section.id} {...section} />
|
||||
))}
|
||||
<CtaSection />
|
||||
</div>
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@@ -1,57 +0,0 @@
|
||||
import { motion } from 'framer-motion';
|
||||
|
||||
const features = [
|
||||
{
|
||||
title: 'Self Healing & Prederministic Deployments',
|
||||
description:
|
||||
"GeoMind nodes detect and fix issues automatically with zero downtime. Every deployment is verifiable and runs exactly the same anywhere, fully autonomous, resilient, and predictable.",
|
||||
},
|
||||
{
|
||||
title: 'Unbreakable Storage',
|
||||
description:
|
||||
'Data is encrypted and encoded using forward-error-correction codes, not replication. Even if parts of the network fail, data can always be rebuilt, making it unhackable, permanent, and loss-proof.',
|
||||
},
|
||||
{
|
||||
title: 'Unbreakable Network',
|
||||
description:
|
||||
'Runs on top of the internet, finding the fastest path for data. With end-to-end quantum-safe encryption and self-optimizing routing, it creates a layer that cannot be hacked or shut down.',
|
||||
},
|
||||
];
|
||||
|
||||
export const CoreTechnology = () => {
|
||||
return (
|
||||
<section className="py-16 lg:py-24">
|
||||
<div className="mx-auto max-w-4xl text-center">
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-600">
|
||||
Core Technology
|
||||
</p>
|
||||
<h2 className="mt-4 text-3xl font-semibold text-ink sm:text-4xl">
|
||||
The Foundation of a New Datacenter Standard
|
||||
</h2>
|
||||
<p className="mt-5 text-base text-slate-600 sm:text-lg">
|
||||
GeoMind is built on a modular, self-healing datacenter architecture designed for unmatched
|
||||
efficiency, reliability, and sovereignty. Every component works autonomously yet integrates
|
||||
seamlessly into a global, planet-scale infrastructure.
|
||||
</p>
|
||||
</div>
|
||||
<div className="mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{features.map((feature, index) => (
|
||||
<motion.div
|
||||
key={feature.title}
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.2 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.1 }}
|
||||
className="flex flex-col rounded-3xl border border-slate-100 bg-white/80 p-8 shadow-subtle backdrop-blur"
|
||||
>
|
||||
<span className="inline-flex h-10 w-10 items-center justify-center rounded-full bg-brand-50 text-sm font-semibold text-brand-600">
|
||||
{index + 1}
|
||||
</span>
|
||||
<h3 className="mt-6 text-lg font-semibold text-ink">{feature.title}</h3>
|
||||
<p className="mt-4 text-sm leading-6 text-slate-600">{feature.description}</p>
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
88
src/pages/home/components/CtaSection.tsx
Normal file
@@ -0,0 +1,88 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { cn } from '../../../lib/cn';
|
||||
import { buttonBaseClass } from '../../../lib/buttonStyles';
|
||||
|
||||
export const CtaSection = () => {
|
||||
return (
|
||||
<section className="snap-start bg-black">
|
||||
<div className="mx-auto flex w-full max-w-5xl flex-col items-center gap-8 px-6 py-20 text-center sm:gap-10 sm:px-10 sm:py-32 lg:py-40">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="flex items-center justify-center gap-4"
|
||||
>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<span className="text-xs font-semibold uppercase tracking-[0.4em] text-white">
|
||||
Ready when you are
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</motion.div>
|
||||
<motion.h3
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.7, ease: 'easeOut', delay: 0.15 }}
|
||||
className="text-4xl font-medium leading-tight text-white sm:text-5xl"
|
||||
>
|
||||
Join the Infrastructure Revolution
|
||||
</motion.h3>
|
||||
<motion.p
|
||||
initial={{ opacity: 0, y: 16 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.7, ease: 'easeOut', delay: 0.25 }}
|
||||
className="max-w-2xl text-lg text-white/70"
|
||||
>
|
||||
From record-breaking digital infrastructure to successful exits. The team behind GeoMind has built infrastructure at scale.
|
||||
</motion.p>
|
||||
<div className="flex w-full flex-col items-stretch gap-4 sm:w-auto sm:flex-row sm:items-center sm:justify-center">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 12 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut', delay: 0.35 }}
|
||||
className="w-full sm:w-auto"
|
||||
>
|
||||
<Link
|
||||
to="/about"
|
||||
className={cn(
|
||||
buttonBaseClass,
|
||||
'w-full px-10 py-4 font-bold uppercase tracking-[0.35em] sm:min-w-[12rem]',
|
||||
)}
|
||||
>
|
||||
About us
|
||||
</Link>
|
||||
</motion.div>
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 12 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut', delay: 0.35 }}
|
||||
className="w-full sm:w-auto"
|
||||
>
|
||||
<a
|
||||
href="https://calendly.com/sachao/30min"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className={cn(
|
||||
buttonBaseClass,
|
||||
'w-full px-10 py-4 font-bold uppercase tracking-[0.35em] sm:min-w-[12rem]',
|
||||
)}
|
||||
>
|
||||
Book a Meeting
|
||||
</a>
|
||||
</motion.div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
@@ -1,31 +0,0 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { PrimaryButton } from '../../../components/ui/PrimaryButton';
|
||||
|
||||
export const FinalCallToAction = () => {
|
||||
return (
|
||||
<section className="py-20 lg:py-32">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
transition={{ duration: 0.7, ease: 'easeOut' }}
|
||||
className="mx-auto max-w-4xl text-center"
|
||||
>
|
||||
<h2 className="text-3xl font-semibold text-ink sm:text-4xl lg:text-5xl">
|
||||
{' '}
|
||||
<span className="bg-gradient-to-r from-brand-500 via-brand-600 to-brand-700 bg-clip-text text-transparent">
|
||||
The Datacenter Standard
|
||||
</span>{' '}
|
||||
<br />
|
||||
for the next era of Cloud and AI.
|
||||
</h2>
|
||||
<p className="mt-6 text-lg leading-relaxed text-ink/70 sm:text-xl">
|
||||
For years we've been pioneering infrastructure technologies that power the world's most demanding cloud workloads. Learn more about our team and expertise behind our mission.
|
||||
</p>
|
||||
<div className="mt-10 flex justify-center">
|
||||
<PrimaryButton to="/about">About Us</PrimaryButton>
|
||||
</div>
|
||||
</motion.div>
|
||||
</section>
|
||||
);
|
||||
};
|
45
src/pages/home/components/HeroSection.tsx
Normal file
@@ -0,0 +1,45 @@
|
||||
import { motion } from 'framer-motion';
|
||||
|
||||
export const HeroSection = () => {
|
||||
return (
|
||||
<section className="relative snap-start">
|
||||
<div className="relative flex h-screen w-full flex-col overflow-hidden bg-black">
|
||||
<video className="absolute inset-0 h-full w-full object-cover" autoPlay muted loop playsInline>
|
||||
<source src="/videos/hero.mp4" type="video/mp4" />
|
||||
</video>
|
||||
|
||||
<div className="relative z-10 flex h-full w-full flex-col justify-between px-6 pb-16 pt-32 sm:px-10 lg:px-16">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 40 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.8, ease: 'easeOut' }}
|
||||
className="max-w-3xl space-y-6"
|
||||
>
|
||||
|
||||
<h1 className="text-4xl font-medium leading-tight text-white sm:text-5xl md:text-6xl">
|
||||
The Planet's Sovereign Agentic Cloud
|
||||
</h1>
|
||||
<p className="max-w-xl text-lg text-white">
|
||||
A new generation of decentralized cloud and AI infrastructure.
|
||||
<br />
|
||||
Secure, scalable, efficient, and sovereign by design. Deploy your own datacenter, scale globally, and turn infrastructure into profit.
|
||||
</p>
|
||||
</motion.div>
|
||||
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.8, ease: 'easeOut', delay: 0.4 }}
|
||||
className="flex items-center justify-between text-xs uppercase tracking-[0.3em] text-white"
|
||||
>
|
||||
<span>Scroll to explore</span>
|
||||
<div className="flex items-center gap-3">
|
||||
<span className="h-px w-16 bg-white/60" />
|
||||
<span>The Living Cloud</span>
|
||||
</div>
|
||||
</motion.div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
@@ -1,55 +0,0 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { PrimaryButton } from '../../../components/ui/PrimaryButton';
|
||||
|
||||
export const HomeHero = () => {
|
||||
return (
|
||||
<section className="relative overflow-hidden rounded-3xl bg-ink text-white">
|
||||
<video
|
||||
className="absolute inset-0 h-full w-full object-cover opacity-60"
|
||||
autoPlay
|
||||
muted
|
||||
loop
|
||||
playsInline
|
||||
poster="/images/hometech.jpg"
|
||||
>
|
||||
<source src="/videos/hero.mp4" type="video/mp4" />
|
||||
</video>
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-[#0f172a]/70 via-[#1e1b4b]/60 to-[#312e81]/80" />
|
||||
<div className="relative z-10 px-6 py-20 sm:px-10 lg:px-16">
|
||||
<motion.h1
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ delay: 0.2, duration: 0.6 }}
|
||||
className="text-3xl font-semibold leading-tight sm:text-4xl lg:text-5xl"
|
||||
>
|
||||
The planet's sovereign agentic cloud
|
||||
</motion.h1>
|
||||
<motion.p
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ delay: 0.3, duration: 0.6 }}
|
||||
className="mt-6 max-w-3xl text-base text-white/70 sm:text-lg"
|
||||
>
|
||||
A new generation of decentralized cloud and AI infrastructure,
|
||||
secure, scalable, efficient, and sovereign by design. Deploy your own
|
||||
datacenter, scale globally, and turn infrastructure into profit.
|
||||
</motion.p>
|
||||
<motion.div
|
||||
className="mt-10 flex flex-wrap gap-4"
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ delay: 0.4, duration: 0.6 }}
|
||||
>
|
||||
<PrimaryButton to="/technology">Technologies</PrimaryButton>
|
||||
<PrimaryButton
|
||||
to="/usecases"
|
||||
variant="ghost"
|
||||
className="border border-white/40 text-white hover:bg-white hover:text-brand-600"
|
||||
>
|
||||
Use Cases
|
||||
</PrimaryButton>
|
||||
</motion.div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
@@ -1,120 +0,0 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { useEffect, useRef } from 'react';
|
||||
import { PrimaryButton } from '../../../components/ui/PrimaryButton';
|
||||
|
||||
export const ImpactBanner = () => {
|
||||
const canvasRef = useRef<HTMLCanvasElement>(null);
|
||||
|
||||
useEffect(() => {
|
||||
const canvas = canvasRef.current;
|
||||
if (!canvas) return;
|
||||
|
||||
const ctx = canvas.getContext('2d');
|
||||
if (!ctx) return;
|
||||
|
||||
// Set canvas size
|
||||
const resizeCanvas = () => {
|
||||
canvas.width = canvas.offsetWidth;
|
||||
canvas.height = canvas.offsetHeight;
|
||||
};
|
||||
resizeCanvas();
|
||||
window.addEventListener('resize', resizeCanvas);
|
||||
|
||||
// Grid configuration
|
||||
const gridSpacing = 40;
|
||||
const dotRadius = 2;
|
||||
const glowRadius = 8;
|
||||
const dots: Array<{
|
||||
x: number;
|
||||
y: number;
|
||||
baseX: number;
|
||||
baseY: number;
|
||||
phase: number;
|
||||
speed: number;
|
||||
}> = [];
|
||||
|
||||
// Create grid of dots
|
||||
for (let x = 0; x < canvas.width; x += gridSpacing) {
|
||||
for (let y = 0; y < canvas.height; y += gridSpacing) {
|
||||
dots.push({
|
||||
x,
|
||||
y,
|
||||
baseX: x,
|
||||
baseY: y,
|
||||
phase: Math.random() * Math.PI * 2,
|
||||
speed: 0.5 + Math.random() * 0.5,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
let animationFrameId: number;
|
||||
let time = 0;
|
||||
|
||||
const animate = () => {
|
||||
ctx.clearRect(0, 0, canvas.width, canvas.height);
|
||||
time += 0.01;
|
||||
|
||||
dots.forEach((dot) => {
|
||||
// Subtle floating animation
|
||||
const offsetX = Math.sin(time * dot.speed + dot.phase) * 3;
|
||||
const offsetY = Math.cos(time * dot.speed * 0.8 + dot.phase) * 3;
|
||||
dot.x = dot.baseX + offsetX;
|
||||
dot.y = dot.baseY + offsetY;
|
||||
|
||||
// Pulsing opacity
|
||||
const opacity = 0.15 + Math.sin(time * dot.speed + dot.phase) * 0.1;
|
||||
|
||||
// Draw glow
|
||||
const gradient = ctx.createRadialGradient(dot.x, dot.y, 0, dot.x, dot.y, glowRadius);
|
||||
gradient.addColorStop(0, `rgba(99, 102, 241, ${opacity * 0.3})`);
|
||||
gradient.addColorStop(1, 'rgba(99, 102, 241, 0)');
|
||||
ctx.fillStyle = gradient;
|
||||
ctx.fillRect(dot.x - glowRadius, dot.y - glowRadius, glowRadius * 2, glowRadius * 2);
|
||||
|
||||
// Draw dot
|
||||
ctx.beginPath();
|
||||
ctx.arc(dot.x, dot.y, dotRadius, 0, Math.PI * 2);
|
||||
ctx.fillStyle = `rgba(99, 102, 241, ${opacity + 0.2})`;
|
||||
ctx.fill();
|
||||
});
|
||||
|
||||
animationFrameId = requestAnimationFrame(animate);
|
||||
};
|
||||
|
||||
animate();
|
||||
|
||||
return () => {
|
||||
window.removeEventListener('resize', resizeCanvas);
|
||||
cancelAnimationFrame(animationFrameId);
|
||||
};
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<section className="relative overflow-hidden py-16 text-center lg:py-20">
|
||||
{/* Animated background canvas */}
|
||||
<canvas
|
||||
ref={canvasRef}
|
||||
className="absolute inset-0 h-full w-full"
|
||||
style={{ opacity: 0.6 }}
|
||||
/>
|
||||
|
||||
{/* Content */}
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 28 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="relative z-10 px-6 sm:px-10"
|
||||
>
|
||||
<h2 className="text-3xl font-semibold text-ink sm:text-4xl">Designed for Real-World Impact</h2>
|
||||
<p className="mx-auto mt-5 max-w-3xl text-base text-slate-600 sm:text-lg">
|
||||
GeoMind enables enterprises and infrastructure providers to run secure, profitable,
|
||||
efficient, and sovereign clouds anywhere.
|
||||
</p>
|
||||
<div className="mt-8 flex justify-center">
|
||||
<PrimaryButton to="/usecases">Use Cases</PrimaryButton>
|
||||
</div>
|
||||
</motion.div>
|
||||
</section>
|
||||
);
|
||||
};
|
86
src/pages/home/components/ScrollLockedSection.tsx
Normal file
@@ -0,0 +1,86 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import { useRef } from 'react';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
import { ChevronsDown } from 'lucide-react';
|
||||
import { cn } from '../../../lib/cn';
|
||||
import { buttonBaseClass } from '../../../lib/buttonStyles';
|
||||
|
||||
type ScrollLockedSectionProps = {
|
||||
id: string;
|
||||
eyebrow: string;
|
||||
title: ReactNode;
|
||||
description: ReactNode;
|
||||
showButton?: boolean;
|
||||
buttonText?: string;
|
||||
buttonLink?: string;
|
||||
};
|
||||
|
||||
export const ScrollLockedSection = ({
|
||||
id,
|
||||
eyebrow,
|
||||
title,
|
||||
description,
|
||||
showButton = true,
|
||||
buttonText = 'Directory Info',
|
||||
buttonLink,
|
||||
}: ScrollLockedSectionProps) => {
|
||||
const navigate = useNavigate();
|
||||
const sectionRef = useRef<HTMLElement | null>(null);
|
||||
|
||||
return (
|
||||
<section id={id} ref={sectionRef} className="relative h-[200vh] snap-start bg-black">
|
||||
<div className="sticky top-0 flex h-screen flex-col">
|
||||
<div className="flex h-full w-full flex-col px-6 sm:px-10 lg:px-16">
|
||||
{/* Text Section - Takes ~20% of vertical space */}
|
||||
<div className="flex-shrink-0 space-y-4 pt-16 sm:pt-20 lg:pt-24">
|
||||
<span className="text-[11px] font-semibold uppercase tracking-[0.45em] text-white">
|
||||
{eyebrow}
|
||||
</span>
|
||||
<div className="max-w-3xl space-y-3">
|
||||
<p className="text-2xl font-semibold leading-tight text-white sm:text-3xl lg:text-[2.25rem] lg:leading-[1.2]">
|
||||
{title}
|
||||
</p>
|
||||
<p className="text-base leading-relaxed text-white/70 sm:text-lg">{description}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Animation Section - Takes ~80% of vertical space */}
|
||||
<div className="flex flex-col items-center gap-6 py-10 sm:gap-8 sm:py-12 lg:gap-10">
|
||||
<div className="mx-auto flex aspect-[28/8] w-full items-center justify-center border border-white/30 bg-black/75 text-center shadow-[0_26px_64px_-48px_rgba(0,0,0,0.6)]">
|
||||
<p className="px-8 text-xs font-semibold uppercase tracking-[0.35em] text-white/70 sm:text-sm">
|
||||
Scroll triggered animation · Work in progress...
|
||||
</p>
|
||||
</div>
|
||||
{/* Button below animation card */}
|
||||
{showButton && buttonLink && (
|
||||
<div className="flex justify-center">
|
||||
{buttonLink.startsWith('http') ? (
|
||||
<a
|
||||
href={buttonLink}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className={cn(buttonBaseClass, 'px-5 py-2 font-bold')}
|
||||
>
|
||||
{buttonText}
|
||||
</a>
|
||||
) : (
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => navigate(buttonLink)}
|
||||
className={cn(buttonBaseClass, 'px-5 py-2 font-bold')}
|
||||
>
|
||||
{buttonText}
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
<div className="mt-auto flex items-center gap-3 pb-12 text-xs uppercase tracking-[0.3em] text-white sm:pb-16">
|
||||
<span>Keep scrolling</span>
|
||||
<ChevronsDown className="h-4 w-4 text-white animate-bounce" aria-hidden="true" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
@@ -1,73 +0,0 @@
|
||||
import { motion } from 'framer-motion';
|
||||
|
||||
const pillars = [
|
||||
{
|
||||
title: 'Sovereign by Design',
|
||||
points: [
|
||||
'Stay compliant with in-country data requirements.',
|
||||
'Each node operates independently or as part of a global, trusted network.',
|
||||
'Maintain total ownership of your infrastructure and data.',
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'Efficient and Sustainable',
|
||||
points: [
|
||||
'Up to 10x less energy for specific workloads.',
|
||||
'Removes layers of legacy software overhead.',
|
||||
'Lower operational cost and carbon footprint.',
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'Profitable Infrastructure',
|
||||
points: [
|
||||
'Turn existing datacenters, offices, or parking lots into productive assets.',
|
||||
'Use capacity for your workloads and sell the excess to the network.',
|
||||
'ROI can be 3x higher than traditional models.',
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
export const WhyGeomind = () => {
|
||||
return (
|
||||
<section className="relative px-6 py-16 sm:px-10 lg:px-16 lg:py-24">
|
||||
<div className="pointer-events-none absolute -left-32 top-0 h-56 w-56 rounded-full bg-brand-100 opacity-60 blur-3xl lg:-left-24" />
|
||||
<div className="pointer-events-none absolute -right-24 bottom-0 h-64 w-64 rounded-full bg-brand-200 opacity-50 blur-3xl" />
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="relative z-10 max-w-3xl"
|
||||
>
|
||||
<h2 className="text-3xl font-semibold text-ink sm:text-4xl">Why GeoMind</h2>
|
||||
<p className="mt-5 text-base text-slate-600 sm:text-lg">
|
||||
Traditional datacenters are increasingly limited by geopolitics, inefficiency, and energy
|
||||
waste. GeoMind eliminates those constraints with a resilient, autonomous infrastructure that
|
||||
delivers planetary scalability and sovereign performance anywhere in the world.
|
||||
</p>
|
||||
</motion.div>
|
||||
<div className="relative z-10 mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{pillars.map((pillar, index) => (
|
||||
<motion.div
|
||||
key={pillar.title}
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.25 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.1 }}
|
||||
className="rounded-3xl border border-slate-100 bg-white/90 p-6 shadow-subtle"
|
||||
>
|
||||
<h3 className="text-lg font-semibold text-ink">{pillar.title}</h3>
|
||||
<ul className="mt-4 space-y-3 text-sm text-slate-600">
|
||||
{pillar.points.map((point) => (
|
||||
<li key={point} className="flex gap-3">
|
||||
<span className="mt-1 inline-block h-1.5 w-1.5 flex-shrink-0 rounded-full bg-brand-300" />
|
||||
<span>{point}</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
@@ -2,14 +2,16 @@ import { TechnologyHero } from './components/TechnologyHero';
|
||||
import { TechnologyArchitecture } from './components/TechnologyArchitecture';
|
||||
import { TechnologyStack } from './components/TechnologyStack';
|
||||
import { TechnologicalBenefits } from './components/TechnologicalBenefits';
|
||||
import { MarketplaceCta } from './components/MarketplaceCta';
|
||||
|
||||
export const TechnologyPage = () => {
|
||||
return (
|
||||
<div className="space-y-12 lg:space-y-16">
|
||||
<div className="space-y-12 text-slate-100 lg:space-y-16">
|
||||
<TechnologyHero />
|
||||
<TechnologyStack />
|
||||
<TechnologyArchitecture />
|
||||
<TechnologicalBenefits />
|
||||
<MarketplaceCta />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
68
src/pages/technology/components/MarketplaceCta.tsx
Normal file
@@ -0,0 +1,68 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { cn } from '../../../lib/cn';
|
||||
import { buttonBaseClass } from '../../../lib/buttonStyles';
|
||||
|
||||
export const MarketplaceCta = () => {
|
||||
return (
|
||||
<section className="snap-start bg-black">
|
||||
<div className="mx-auto flex w-full max-w-5xl flex-col items-center gap-8 px-6 py-20 text-center sm:gap-10 sm:px-10 sm:py-32 lg:py-40">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 20 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="flex items-center justify-center gap-4"
|
||||
>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<span className="text-xs font-semibold uppercase tracking-[0.4em] text-white">
|
||||
Explore The Network
|
||||
</span>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</motion.div>
|
||||
<motion.h3
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.7, ease: 'easeOut', delay: 0.15 }}
|
||||
className="text-4xl font-medium leading-tight text-white sm:text-5xl"
|
||||
>
|
||||
See What's Being Built Right Now
|
||||
</motion.h3>
|
||||
<motion.p
|
||||
initial={{ opacity: 0, y: 16 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.7, ease: 'easeOut', delay: 0.25 }}
|
||||
className="max-w-2xl text-lg text-white/70"
|
||||
>
|
||||
Discover real use cases partner integrations, and revenue models running on GeoMind
|
||||
infrastructure.
|
||||
</motion.p>
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 12 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, margin: '-20%' }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut', delay: 0.35 }}
|
||||
className="w-full sm:w-auto"
|
||||
>
|
||||
<Link
|
||||
to="/usecases"
|
||||
className={cn(
|
||||
buttonBaseClass,
|
||||
'w-full px-10 py-4 font-bold uppercase tracking-[0.35em] sm:w-auto',
|
||||
)}
|
||||
>
|
||||
See Use cases
|
||||
</Link>
|
||||
</motion.div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
@@ -1,53 +1,56 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { ShieldCheck, Globe, Leaf, LineChart, Layers } from 'lucide-react';
|
||||
import { Store, Coins, Cpu, Handshake } from 'lucide-react';
|
||||
|
||||
const benefits = [
|
||||
{
|
||||
title: 'Ultra-Secure',
|
||||
description: 'Protect sensitive workloads with end-to-end security.',
|
||||
icon: ShieldCheck,
|
||||
title: 'Free to List',
|
||||
description: 'Join the marketplace at no cost and showcase available cloud units instantly.',
|
||||
icon: Store,
|
||||
},
|
||||
{
|
||||
title: 'Scales Globally',
|
||||
description: 'Supports workloads anywhere, from local nodes to planetary scale.',
|
||||
icon: Globe,
|
||||
title: 'Earn from Idle Capacity',
|
||||
description: 'Sell unused compute cycles to AI teams and turn sunk costs into recurring revenue.',
|
||||
icon: Coins,
|
||||
},
|
||||
{
|
||||
title: 'Energy Efficient',
|
||||
description: 'Up to 10x less energy for specific workloads.',
|
||||
icon: Leaf,
|
||||
title: 'Capacity on Demand',
|
||||
description: 'Tap trusted nodes across the network when workloads spike so you always have extra capacity when you need it.',
|
||||
icon: Cpu,
|
||||
},
|
||||
{
|
||||
title: 'Profitable',
|
||||
description: 'Monetize idle capacity; achieve ROI up to 3x higher.',
|
||||
icon: LineChart,
|
||||
},
|
||||
{
|
||||
title: 'Flexible',
|
||||
description: 'Compatible with existing infrastructure and hyperscaler requirements.',
|
||||
icon: Layers,
|
||||
title: 'Trusted Settlements',
|
||||
description: 'Automated contracts and clear payouts keep every transaction compliant and transparent.',
|
||||
icon: Handshake,
|
||||
},
|
||||
];
|
||||
|
||||
export const TechnologicalBenefits = () => {
|
||||
return (
|
||||
<section className="py-16 lg:py-24">
|
||||
<section className="py-16 text-slate-100 lg:py-24">
|
||||
<div className="mx-auto max-w-3xl text-center">
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-600">
|
||||
Technological Benefits
|
||||
<div className="flex items-center justify-center gap-4">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-300">
|
||||
Marketplace
|
||||
</p>
|
||||
<h2 className="mt-4 text-3xl font-semibold text-ink sm:text-4xl">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</div>
|
||||
<h2 className="mt-4 text-3xl font-semibold text-white sm:text-4xl">
|
||||
Infrastructure that Pays for Itself
|
||||
</h2>
|
||||
<p className="mt-5 text-base text-slate-600 sm:text-lg">
|
||||
GeoMind doesn't just deliver advanced datacenter capabilities, it turns your existing
|
||||
infrastructure into a strategic asset. Run your own workloads securely and efficiently,
|
||||
while selling unused capacity to the network. With up to 10x lower energy consumption for
|
||||
specific workloads and ROI up to 3x higher than traditional models, our platform works for
|
||||
businesses, hyperscalers, and AI applications alike.
|
||||
<p className="mt-5 text-base text-slate-300 sm:text-lg">
|
||||
GeoMind Marketplace is a free exchange for cloud units. Operators list spare capacity,
|
||||
buyers tap verified resources, and everyone earns. Let your AI infrastructure fund itself
|
||||
as unused workloads convert into new revenue streams.
|
||||
</p>
|
||||
</div>
|
||||
<div className="mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
||||
<div className="mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-4">
|
||||
{benefits.map((benefit, index) => (
|
||||
<motion.div
|
||||
key={benefit.title}
|
||||
@@ -55,13 +58,16 @@ export const TechnologicalBenefits = () => {
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.25 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.05 }}
|
||||
className="flex h-full flex-col rounded-3xl border border-slate-100 bg-white/80 p-6 shadow-subtle backdrop-blur"
|
||||
className="group relative flex h-full flex-col overflow-hidden rounded-3xl border border-white/10 bg-slate-950/80 p-6 transition-all duration-300 hover:-translate-y-1 hover:border-brand-400/50 hover:shadow-[0_25px_40px_-24px_rgba(15,118,230,0.45)]"
|
||||
>
|
||||
<div className="flex h-12 w-12 items-center justify-center rounded-full bg-brand-50">
|
||||
<benefit.icon className="h-7 w-7 text-brand-600" />
|
||||
<div className="pointer-events-none absolute inset-0 opacity-0 transition-opacity duration-300 group-hover:opacity-100">
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-brand-500/15 via-transparent to-brand-200/10" />
|
||||
</div>
|
||||
<h3 className="mt-6 text-lg font-semibold text-ink">{benefit.title}</h3>
|
||||
<p className="mt-3 text-sm leading-6 text-slate-600">{benefit.description}</p>
|
||||
<div className="flex h-12 w-12 items-center justify-center rounded-full bg-gradient-to-br from-brand-500/30 via-brand-500/15 to-brand-200/10 text-brand-100">
|
||||
<benefit.icon className="h-7 w-7" />
|
||||
</div>
|
||||
<h3 className="mt-6 text-lg font-semibold text-white">{benefit.title}</h3>
|
||||
<p className="mt-3 text-sm leading-6 text-slate-300">{benefit.description}</p>
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
|
@@ -8,7 +8,7 @@ type Bullet = {
|
||||
};
|
||||
|
||||
type Tab = {
|
||||
id: 'zero-os' | 'compute' | 'data' | 'network';
|
||||
id: 'zero-os' | 'compute' | 'gpu' | 'data' | 'network';
|
||||
label: string;
|
||||
title: string;
|
||||
description: string;
|
||||
@@ -120,6 +120,33 @@ const tabs: Tab[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'gpu',
|
||||
label: 'GPU Fabric',
|
||||
title: 'Distributed GPU Fabric',
|
||||
description:
|
||||
'A sovereign mesh of GPU capacity that turns idle silicon into revenue while powering global AI workloads and collective intelligence.',
|
||||
cardText:
|
||||
'Autonomous allocation keeps GPUs saturated with high-value workloads, creating a lucrative marketplace for operators and builders alike.',
|
||||
bullets: [
|
||||
{
|
||||
heading: 'Global GPU Federation',
|
||||
body: 'Aggregates GPUs across homes, enterprises, and datacenters into a single pool so large-scale training and inference run close to data without hyperscaler dependence.',
|
||||
},
|
||||
{
|
||||
heading: 'Revenue Engine',
|
||||
body: 'Dynamic marketplace routes AI and rendering jobs to available GPUs, maximizing utilization and delivering steady cash flow to operators.',
|
||||
},
|
||||
{
|
||||
heading: 'Sovereign Collective Intelligence',
|
||||
body: 'Supports collaborative model training where communities contribute data and capacity, unlocking responsible AI networks governed by their stakeholders.',
|
||||
},
|
||||
{
|
||||
heading: 'Zero-OS Integration',
|
||||
body: 'Zero-OS provisions GPU-optimized microVMs with secure drivers, ensuring deterministic performance and remote attestation of every workload.',
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
// Floating particle component
|
||||
@@ -159,10 +186,23 @@ export const TechnologyArchitecture = () => {
|
||||
}, [activeTab]);
|
||||
|
||||
return (
|
||||
<section className="py-16 lg:py-24">
|
||||
<section className="py-16 text-slate-100 lg:py-24">
|
||||
<div className="mx-auto max-w-4xl text-center">
|
||||
<h2 className="text-3xl font-semibold text-ink sm:text-4xl">Technology Architecture</h2>
|
||||
<p className="mt-4 text-base text-slate-600 sm:text-lg">
|
||||
<div className="flex items-center justify-center gap-4">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-300">
|
||||
Software Primitives
|
||||
</p>
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</div>
|
||||
<h2 className="mt-4 text-3xl font-semibold text-white sm:text-4xl">Autonomous Software Stack</h2>
|
||||
<p className="mt-4 text-base text-slate-300 sm:text-lg">
|
||||
Seamlessly integrating compute, storage, and networking, GeoMind's architecture delivers secure,
|
||||
scalable, and efficient infrastructure for AI, cloud, and next-generation workloads from edge to
|
||||
planetary scale.
|
||||
@@ -175,10 +215,10 @@ export const TechnologyArchitecture = () => {
|
||||
key={tab.id}
|
||||
type="button"
|
||||
onClick={() => setActiveTab(tab.id)}
|
||||
className={`rounded-full px-4 py-2 text-sm font-semibold transition-all duration-300 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-300 focus-visible:ring-offset-2 ${
|
||||
className={`rounded-full px-4 py-2 text-sm font-semibold transition-all duration-300 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-300 focus-visible:ring-offset-2 focus-visible:ring-offset-neutral-950 ${
|
||||
activeTab === tab.id
|
||||
? 'bg-brand-600 text-white shadow-subtle hover:bg-brand-700'
|
||||
: 'border border-slate-200 bg-white text-slate-500 hover:border-brand-300 hover:bg-brand-50 hover:text-brand-700 hover:shadow-md'
|
||||
: 'border border-white/10 bg-transparent text-slate-300 hover:border-brand-400/50 hover:bg-brand-500/10 hover:text-white hover:shadow-md'
|
||||
}`}
|
||||
>
|
||||
{tab.label}
|
||||
@@ -196,18 +236,21 @@ export const TechnologyArchitecture = () => {
|
||||
className="grid gap-8 lg:grid-cols-[2fr,1fr]"
|
||||
>
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold text-brand-600">{current.title}</h3>
|
||||
<p className="mt-2 text-base text-slate-600">{current.description}</p>
|
||||
<ul className="mt-6 space-y-4 text-sm text-slate-600">
|
||||
<h3 className="text-xl font-semibold text-brand-200">{current.title}</h3>
|
||||
<p className="mt-2 text-base text-slate-300">{current.description}</p>
|
||||
<ul className="mt-6 space-y-4 text-sm text-slate-300">
|
||||
{current.bullets.map((bullet) => (
|
||||
<li key={bullet.heading} className="rounded-2xl border border-slate-100 bg-white/70 p-4">
|
||||
<p className="text-base font-semibold text-ink">{bullet.heading}</p>
|
||||
<p className="mt-2 text-sm text-slate-600">{bullet.body}</p>
|
||||
<li
|
||||
key={bullet.heading}
|
||||
className="group rounded-2xl border border-white/10 bg-black p-4 transition-all duration-300 hover:-translate-y-1 hover:border-brand-400/50 hover:bg-white/5 hover:shadow-[0_24px_48px_-36px_rgba(56,189,248,0.45)]"
|
||||
>
|
||||
<p className="text-base font-semibold text-white">{bullet.heading}</p>
|
||||
<p className="mt-2 text-sm text-slate-300">{bullet.body}</p>
|
||||
{bullet.subpoints && (
|
||||
<ul className="mt-3 space-y-2 text-sm text-slate-500">
|
||||
<ul className="mt-3 space-y-2 text-sm text-slate-400">
|
||||
{bullet.subpoints.map((point) => (
|
||||
<li key={point} className="flex gap-3">
|
||||
<span className="mt-1 inline-block h-1.5 w-1.5 flex-shrink-0 rounded-full bg-brand-300" />
|
||||
<span className="mt-1 inline-block h-1.5 w-1.5 flex-shrink-0 rounded-full bg-brand-400" />
|
||||
<span>{point}</span>
|
||||
</li>
|
||||
))}
|
||||
@@ -217,13 +260,13 @@ export const TechnologyArchitecture = () => {
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
<div className="hidden h-full rounded-3xl bg-brand-50/50 p-6 lg:flex lg:flex-col lg:items-start lg:justify-between">
|
||||
<div className="hidden h-full rounded-3xl border border-white/10 bg-black p-6 transition-all duration-300 hover:-translate-y-1.5 hover:border-brand-400/50 hover:bg-white/5 hover:shadow-[0_30px_72px_-48px_rgba(56,189,248,0.45)] backdrop-blur lg:flex lg:flex-col lg:items-start lg:justify-between">
|
||||
<motion.p
|
||||
key={`label-${current.id}`}
|
||||
initial={{ opacity: 0, y: -10 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.3 }}
|
||||
className="text-sm font-semibold uppercase tracking-[0.35em] text-brand-500"
|
||||
className="text-sm font-semibold uppercase tracking-[0.35em] text-brand-200"
|
||||
>
|
||||
{current.label}
|
||||
</motion.p>
|
||||
@@ -232,14 +275,14 @@ export const TechnologyArchitecture = () => {
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}
|
||||
transition={{ duration: 0.5, delay: 0.2 }}
|
||||
className="mt-6 text-sm text-brand-700"
|
||||
className="mt-6 text-sm text-slate-200"
|
||||
>
|
||||
{current.cardText}
|
||||
</motion.p>
|
||||
<div className="relative mt-6 h-40 w-full overflow-hidden rounded-2xl bg-gradient-to-br from-blue-50 via-indigo-50 to-purple-50">
|
||||
<div className="relative mt-6 h-40 w-full overflow-hidden rounded-2xl bg-gradient-to-br from-blue-950/60 via-indigo-950/50 to-purple-900/40">
|
||||
{/* Animated gradient overlay */}
|
||||
<motion.div
|
||||
className="absolute inset-0 bg-gradient-to-br from-blue-200/40 via-indigo-200/40 to-purple-200/40"
|
||||
className="absolute inset-0 bg-gradient-to-br from-blue-500/20 via-indigo-500/20 to-purple-500/20"
|
||||
animate={{
|
||||
opacity: [0.3, 0.6, 0.3],
|
||||
scale: [1, 1.05, 1],
|
||||
|
@@ -1,38 +1,22 @@
|
||||
import { motion } from 'framer-motion';
|
||||
import { PrimaryButton } from '../../../components/ui/PrimaryButton';
|
||||
|
||||
export const TechnologyHero = () => {
|
||||
return (
|
||||
<section className="relative overflow-hidden rounded-3xl text-white">
|
||||
<img
|
||||
src="/images/hometech.jpg"
|
||||
alt=""
|
||||
className="absolute inset-0 h-full w-full object-cover"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-[#0f172a]/80 via-[#1e1b4b]/70 to-[#312e81]/75" />
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 32 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="relative z-10 px-6 py-20 sm:px-10 lg:px-16 lg:py-24"
|
||||
<section
|
||||
aria-label="GeoMind technology showcase"
|
||||
className="group relative min-h-[420px] overflow-hidden rounded-[32px] border border-white/10 bg-slate-950 text-white shadow-[0_35px_90px_-45px_rgba(17,24,39,0.85)] transition-all duration-500 hover:-translate-y-1.5 hover:border-brand-400/70 hover:shadow-[0_45px_120px_-45px_rgba(122,141,249,0.55)] sm:min-h-[520px] lg:min-h-[600px]"
|
||||
>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-white/70">
|
||||
Technology
|
||||
</p>
|
||||
<h1 className="mt-6 text-3xl font-semibold leading-tight sm:text-4xl lg:text-5xl">
|
||||
The Foundation of the Next-Generation Datacenter
|
||||
</h1>
|
||||
<p className="mt-6 max-w-3xl text-base text-white/75 sm:text-lg">
|
||||
GeoMind combines hardware and revolutionary software to deliver secure, scalable, and
|
||||
sovereign cloud and AI infrastructure. Built for efficiency, sustainability, and
|
||||
profitability, it empowers organizations to run workloads, scale globally, and monetize
|
||||
excess capacity.
|
||||
</p>
|
||||
<div className="mt-10">
|
||||
<PrimaryButton to="/usecases">Use Cases</PrimaryButton>
|
||||
<video
|
||||
className="absolute inset-0 h-full w-full object-cover transition-transform duration-700 group-hover:scale-105"
|
||||
src="/videos/galaxy_vid.mp4"
|
||||
autoPlay
|
||||
loop
|
||||
muted
|
||||
playsInline
|
||||
preload="auto"
|
||||
/>
|
||||
<div className="absolute bottom-[-20%] right-[-10%] h-[420px] w-[420px] rounded-full bg-[rgba(90,107,240,0.25)] blur-3xl transition-transform duration-700 group-hover:scale-110" />
|
||||
<div className="relative z-10 h-full w-full px-6 py-24 sm:px-12 lg:px-20 lg:py-32">
|
||||
<span className="sr-only">Immersive background video highlighting GeoMind technology.</span>
|
||||
</div>
|
||||
</motion.div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
@@ -17,16 +17,26 @@ const stackItems = [
|
||||
|
||||
export const TechnologyStack = () => {
|
||||
return (
|
||||
<section className="py-16 lg:py-24">
|
||||
<section className="py-16 text-slate-100 lg:py-24">
|
||||
<div className="mx-auto max-w-6xl px-6 sm:px-10 lg:px-16">
|
||||
<div className="mx-auto max-w-3xl text-center">
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-slate-500">
|
||||
Technology Stack
|
||||
<div className="flex items-center justify-center gap-4">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-r from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-brand-300">
|
||||
Hardware Tiers
|
||||
</p>
|
||||
<h2 className="mt-4 text-3xl font-semibold text-ink sm:text-4xl">
|
||||
<span
|
||||
aria-hidden="true"
|
||||
className="hidden h-px w-16 bg-gradient-to-l from-transparent via-brand-500/40 to-brand-300/70 sm:block"
|
||||
/>
|
||||
</div>
|
||||
<h2 className="mt-4 text-3xl font-semibold text-white sm:text-4xl">
|
||||
An Infrastructure Built for the AI Era
|
||||
</h2>
|
||||
<p className="mt-5 text-base text-slate-600 sm:text-lg">
|
||||
<p className="mt-5 text-base text-slate-300 sm:text-lg">
|
||||
Our unique technology stack delivers unmatched security, scalability, and flexibility,
|
||||
preparing you for the AI workforce of the future.
|
||||
</p>
|
||||
@@ -39,14 +49,14 @@ export const TechnologyStack = () => {
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.1 }}
|
||||
className="overflow-hidden rounded-3xl"
|
||||
className="flex h-full flex-col overflow-hidden rounded-3xl bg-black text-center shadow-none backdrop-blur"
|
||||
>
|
||||
<div className="h-56 overflow-hidden">
|
||||
<img src={item.image} alt={item.title} className="h-full w-full object-cover" />
|
||||
</div>
|
||||
<div className="p-6">
|
||||
<h3 className="text-xl font-semibold text-ink">{item.title}</h3>
|
||||
<p className="mt-3 text-sm leading-6 text-slate-600">{item.description}</p>
|
||||
<div className="flex flex-1 flex-col items-center gap-4 p-6">
|
||||
<h3 className="text-xl font-semibold text-white">{item.title}</h3>
|
||||
<p className="text-sm leading-6 text-slate-300">{item.description}</p>
|
||||
</div>
|
||||
</motion.div>
|
||||
))}
|
||||
|
@@ -3,7 +3,7 @@ import { UseCasesGrid } from './components/UseCasesGrid';
|
||||
|
||||
export const UseCasesPage = () => {
|
||||
return (
|
||||
<div className="space-y-12 lg:space-y-16">
|
||||
<div className="space-y-12 text-slate-100 lg:space-y-16">
|
||||
<UseCasesHero />
|
||||
<UseCasesGrid />
|
||||
</div>
|
||||
|
@@ -1,67 +1,75 @@
|
||||
import { useState } from 'react';
|
||||
import { motion } from 'framer-motion';
|
||||
import { cn } from '../../../lib/cn';
|
||||
import { buttonGhostLightClass } from '../../../lib/buttonStyles';
|
||||
import ContactForm from '../../../components/ui/ContactForm';
|
||||
|
||||
const useCases = [
|
||||
{
|
||||
title: 'Tier-S Datacenters',
|
||||
description:
|
||||
"GeoMind's datacenters are 60% more efficient, disaster-resistant, highly secure, fully private, and can be deployed in weeks rather than years, offering a faster, safer, and smarter solution for modern data needs.",
|
||||
image: '/images/tier-s.jpeg',
|
||||
},
|
||||
{
|
||||
title: 'Tier-H Datacenters',
|
||||
description:
|
||||
"GeoMind's distributed datacenter architecture extends from core to edge, seamlessly scaling into homes, offices, and communities. Its ultra-efficient AI, compute, and storage nodes deliver unmatched cost efficiency, performance, and scalability.",
|
||||
image: '/images/tier-h.jpeg',
|
||||
},
|
||||
{
|
||||
title: 'Project Mycelium',
|
||||
highlight: 'Decentralized Core',
|
||||
description:
|
||||
'Project Mycelium is a core use case of our ecosystem, providing a decentralized, scalable, and secure infrastructure. Built on a global network of independent nodes, it allows individuals and businesses to participate in a more open, distributed, and participatory cloud and Internet model.',
|
||||
'Project Mycelium turns GeoMind primitives into community services, giving underserved regions, nomads, and privacy seekers decentralized storage, secure networking, and personal agents while sustaining host demand.',
|
||||
image: '/images/mycelium.jpeg',
|
||||
},
|
||||
{
|
||||
title: 'Zanzibar Digital Free Zone',
|
||||
title: 'Digital Free Zone',
|
||||
highlight: 'Sovereign Innovation',
|
||||
description:
|
||||
'Zanzibar Digital Free Zone offers a sovereign jurisdiction for digital innovation, allowing businesses to operate with regulatory clarity and independent dispute resolution. It supports the emerging Real World Assets (RWA) economy, enabling compliant management of digital and physical assets.',
|
||||
'An economic bridge in Zanzibar for digital assets with dedicated governance, regulation, and dispute resolution so builders can deploy compliant Web3, AI, and fintech products on GeoMind-powered future-ready infrastructure.',
|
||||
image: '/images/freezone.jpeg',
|
||||
titleOffset: '-mt-2 sm:-mt-3',
|
||||
},
|
||||
{
|
||||
title: 'COOP Cloud',
|
||||
highlight: 'People-Powered Cloud',
|
||||
description:
|
||||
'COOP Cloud is a global cooperative where every user is a member with one vote. Offering a decentralized alternative to centralized cloud providers, it empowers users to deploy nodes worldwide, aiming to create Augmented Collective Intelligence with over one million nodes globally.',
|
||||
'COOP Cloud teams with the International Cooperative Alliance so 1.2 billion co-op members can run shared infrastructure and launch services together on GeoMind, building a self-sustaining digital infrastructure that serves their communities.',
|
||||
image: '/images/coop.jpeg',
|
||||
titleOffset: '-mt-3 sm:-mt-4',
|
||||
},
|
||||
{
|
||||
title: 'Sovereign Cloud & Internet for Countries',
|
||||
title: 'Cloud for Nations',
|
||||
highlight: 'Digital Sovereignty',
|
||||
description:
|
||||
'Most countries lack independent Internet infrastructure and rely on foreign operators. GeoMind enables countries to deploy their own sovereign Cloud & Internet, ensuring economic benefits, data sovereignty, and local control. Several governments are already exploring this.',
|
||||
'Most governments and citizens rely on foreign clouds, exposing finances and national security. GeoMind equips physical and digital states with sovereign infrastructure so they control data, AI, and services on their own terms.',
|
||||
image: '/images/countries.jpeg',
|
||||
},
|
||||
{
|
||||
title: 'Real Estate Deployments',
|
||||
highlight: 'Underutilized Spaces',
|
||||
description:
|
||||
'Deploy GeoMind in underutilized spaces with rapid integration into building utilities. Turn idle rooms into revenue generating data centers at minimal additional cost. Deliver residents and employees data sovereignty on tech that requires minimal maintenance.',
|
||||
image: '/images/hometech2.jpg',
|
||||
featured: true,
|
||||
},
|
||||
];
|
||||
|
||||
export const UseCasesGrid = () => {
|
||||
const [isContactFormOpen, setIsContactFormOpen] = useState(false);
|
||||
const [formType, setFormType] = useState<'deploy' | 'offtake' | 'investor'>('deploy');
|
||||
|
||||
const handleOpenForm = (type: 'deploy' | 'offtake' | 'investor') => {
|
||||
setFormType(type);
|
||||
setIsContactFormOpen(true);
|
||||
};
|
||||
|
||||
return (
|
||||
<section className="py-16 lg:py-24">
|
||||
<div className="relative p-8 sm:rounded-3xl lg:p-16">
|
||||
<div className="pointer-events-none absolute -bottom-20 -left-32 h-72 w-72 rounded-full bg-brand-100 opacity-50 blur-3xl" />
|
||||
<div className="pointer-events-none absolute -top-24 right-12 h-48 w-48 rounded-full bg-brand-200 opacity-40 blur-3xl" />
|
||||
<section className="px-4 py-16 text-slate-100 sm:px-0 lg:py-24">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="relative z-10"
|
||||
>
|
||||
<h2 className="text-3xl font-semibold text-ink sm:text-4xl">Use Cases</h2>
|
||||
<p className="mt-5 max-w-4xl text-base text-slate-600 sm:text-lg">
|
||||
GeoMind's next-generation datacenter architecture extends from core to edge, seamlessly
|
||||
connecting Tier S hyperscale facilities with Tier H local nodes to create a unified,
|
||||
sovereign infrastructure. Up to 60% more energy-efficient and built for resilience, privacy,
|
||||
and quantum-safe security, it can be deployed in weeks rather than years. These capabilities
|
||||
power the transformative use cases below, driving a more secure, efficient, and autonomous
|
||||
digital future.
|
||||
<h2 className="text-center text-3xl font-semibold text-white sm:text-4xl">Use Cases</h2>
|
||||
<p className="mt-5 max-w-4xl text-center text-base text-slate-300 sm:text-lg sm:mx-auto">
|
||||
From decentralized cores to national-scale infrastructure, GeoMind translates sovereign
|
||||
compute into deployable products. Each use case blends hyperscale performance with edge
|
||||
responsiveness, enabling partners to launch resilient, energy-efficient capacity exactly
|
||||
where it is needed.
|
||||
</p>
|
||||
<div className="mt-12 grid gap-8 sm:grid-cols-2 lg:grid-cols-3">
|
||||
<div className="mt-12 -mx-4 flex snap-x snap-mandatory gap-6 overflow-x-auto pb-6 sm:mx-0 sm:grid sm:grid-cols-2 sm:gap-8 sm:overflow-visible sm:pb-0 sm:snap-none xl:grid-cols-4">
|
||||
{useCases.map((useCase, index) => (
|
||||
<motion.article
|
||||
key={useCase.title}
|
||||
@@ -69,21 +77,93 @@ export const UseCasesGrid = () => {
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.25 }}
|
||||
transition={{ duration: 0.5, delay: index * 0.05 }}
|
||||
className="overflow-hidden rounded-3xl border border-slate-100 bg-white/90 shadow-subtle"
|
||||
className={cn(
|
||||
'group relative flex h-full min-w-[80vw] snap-center flex-col overflow-hidden rounded-3xl border border-white/10 bg-slate-950/80 transition-all duration-300 hover:-translate-y-1 hover:border-brand-400/50 hover:shadow-[0_25px_40px_-24px_rgba(15,118,230,0.45)] sm:min-w-0',
|
||||
useCase.featured && 'min-w-[88vw] sm:col-span-2 xl:col-span-4 sm:flex sm:flex-row sm:items-start sm:gap-8'
|
||||
)}
|
||||
>
|
||||
<div className="relative h-48 overflow-hidden">
|
||||
<img src={useCase.image} alt={useCase.title} className="h-full w-full object-cover" />
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-ink/70 via-transparent to-transparent" />
|
||||
<h3 className="absolute bottom-4 left-4 text-lg font-semibold text-white">
|
||||
{useCase.title}
|
||||
</h3>
|
||||
<div className="pointer-events-none absolute inset-0 opacity-0 transition-opacity duration-300 group-hover:opacity-100">
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-brand-500/15 via-transparent to-brand-200/10" />
|
||||
</div>
|
||||
<div
|
||||
className={cn(
|
||||
'relative h-48 overflow-hidden sm:h-56 lg:h-full',
|
||||
useCase.featured && 'sm:h-full sm:w-[42%] lg:w-[38%]'
|
||||
)}
|
||||
>
|
||||
<img
|
||||
src={useCase.image}
|
||||
alt={useCase.title}
|
||||
className="h-full w-full object-cover transition-transform duration-500 group-hover:scale-105"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-ink/80 via-transparent to-transparent" />
|
||||
</div>
|
||||
<div
|
||||
className={cn(
|
||||
'relative flex h-full flex-col items-center px-6 pb-6 pt-6 text-center sm:px-8 sm:pb-8 sm:pt-8',
|
||||
useCase.featured && 'sm:flex-1 sm:px-10 sm:pb-12 sm:pt-12'
|
||||
)}
|
||||
>
|
||||
<div className={cn('flex flex-col items-center gap-3', useCase.titleOffset)}>
|
||||
<span className="text-xs font-semibold uppercase tracking-[0.3em] text-sky-200/80">
|
||||
{useCase.highlight}
|
||||
</span>
|
||||
<h3 className="text-xl font-semibold text-white">{useCase.title}</h3>
|
||||
</div>
|
||||
<p className="mt-6 text-sm leading-6 text-slate-300 sm:mt-8">{useCase.description}</p>
|
||||
</div>
|
||||
<p className="p-6 text-sm leading-6 text-slate-600">{useCase.description}</p>
|
||||
</motion.article>
|
||||
))}
|
||||
</div>
|
||||
</motion.div>
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 24 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut', delay: 0.2 }}
|
||||
className="mt-16 overflow-hidden rounded-[32px] border border-white/10 bg-gradient-to-br from-[#0d112a] via-[#111f3f] to-[#1c2257] p-8 text-white shadow-[0_30px_90px_-50px_rgba(15,23,42,1)] sm:p-12 lg:p-16"
|
||||
>
|
||||
<div className="flex flex-col gap-8 lg:flex-row lg:items-center lg:justify-between">
|
||||
<div className="max-w-2xl space-y-4">
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.4em] text-white/60">
|
||||
Become a Partner
|
||||
</p>
|
||||
<h3 className="text-2xl font-semibold sm:text-3xl">
|
||||
Build sovereign infrastructure with GeoMind's ecosystem.
|
||||
</h3>
|
||||
<p className="text-base text-white/70">
|
||||
Pick the path that delivers outcomes fast: deploy capacity, lock in offtake, or invest in
|
||||
the platform redefining cloud infrastructure.
|
||||
</p>
|
||||
</div>
|
||||
<div className="grid w-full gap-4 sm:grid-cols-2 lg:w-auto lg:grid-cols-1">
|
||||
<button
|
||||
onClick={() => handleOpenForm('deploy')}
|
||||
className={cn(buttonGhostLightClass, 'flex w-full uppercase tracking-[0.25em]')}
|
||||
>
|
||||
Deploy Capacity
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleOpenForm('offtake')}
|
||||
className={cn(buttonGhostLightClass, 'flex w-full uppercase tracking-[0.25em]')}
|
||||
>
|
||||
Offtake Capacity
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleOpenForm('investor')}
|
||||
className={cn(buttonGhostLightClass, 'flex w-full uppercase tracking-[0.25em]')}
|
||||
>
|
||||
Invest in the Tech
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</motion.div>
|
||||
</motion.div>
|
||||
<ContactForm
|
||||
isOpen={isContactFormOpen}
|
||||
onClose={() => setIsContactFormOpen(false)}
|
||||
title={formType === 'deploy' ? 'Deploy Capacity' : formType === 'offtake' ? 'Offtake Capacity' : 'Invest in the Tech'}
|
||||
formType={formType}
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
@@ -2,31 +2,31 @@ import { motion } from 'framer-motion';
|
||||
|
||||
export const UseCasesHero = () => {
|
||||
return (
|
||||
<section className="relative overflow-hidden rounded-3xl text-white">
|
||||
<section className="group relative flex overflow-hidden rounded-[32px] border border-white/10 bg-gradient-to-br from-[#050a21] via-[#11173a] to-[#221852] text-white shadow-[0_35px_90px_-45px_rgba(17,24,39,0.95)] transition-all duration-500 hover:-translate-y-1.5 hover:border-brand-400/60 hover:shadow-[0_40px_120px_-45px_rgba(122,141,249,0.45)]">
|
||||
<img
|
||||
src="/images/uscase_BG.png"
|
||||
src="/images/mesh2.gif"
|
||||
alt=""
|
||||
className="absolute inset-0 h-full w-full object-cover"
|
||||
className="absolute inset-0 h-full w-full object-cover opacity-40 mix-blend-screen transition-transform duration-700 group-hover:scale-105"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-[#0f172a]/80 via-[#1e1b4b]/70 to-[#312e81]/80" />
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-white/10 via-white/5 to-transparent mix-blend-overlay transition-opacity duration-500 group-hover:opacity-90" />
|
||||
<div className="absolute inset-0 bg-[radial-gradient(circle_at_top,_rgba(122,141,249,0.35),_transparent_60%)] opacity-90 transition-opacity duration-500 group-hover:opacity-100" />
|
||||
<div className="absolute bottom-[-35%] right-[-5%] h-[380px] w-[380px] rounded-full bg-brand-400/30 blur-3xl transition-transform duration-700 group-hover:scale-110" />
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 32 }}
|
||||
whileInView={{ opacity: 1, y: 0 }}
|
||||
viewport={{ once: true, amount: 0.3 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="relative z-10 px-6 py-20 sm:px-10 lg:px-16 lg:py-24"
|
||||
className="relative z-10 flex w-full flex-col items-center px-6 py-24 text-center sm:px-12 lg:px-20 lg:py-28"
|
||||
>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.35em] text-white/70">
|
||||
<span className="inline-flex items-center gap-3 text-[0.68rem] uppercase tracking-[0.42em] text-white/70">
|
||||
<span className="h-px w-10 bg-white/40" />
|
||||
Real World Applications
|
||||
</p>
|
||||
<h1 className="mt-6 text-3xl font-semibold leading-tight sm:text-4xl lg:text-5xl">
|
||||
<span className="h-px w-10 bg-white/40" />
|
||||
</span>
|
||||
<h1 className="mt-8 max-w-3xl text-3xl font-semibold leading-tight sm:text-4xl lg:text-5xl lg:leading-[1.1]">
|
||||
Designed for Real-World Impact
|
||||
</h1>
|
||||
<p className="mt-6 max-w-3xl text-base text-white/75 sm:text-lg">
|
||||
GeoMind empowers organizations to deploy secure, efficient, and sovereign cloud and AI
|
||||
infrastructure anywhere. From enterprises to governments, our use cases demonstrate how
|
||||
next-generation datacenters generate value, ensure sovereignty, and support modern AI,
|
||||
cloud, and edge workloads.
|
||||
<p className="mt-6 max-w-3xl text-base text-white/80 sm:text-lg">
|
||||
GeoMind empowers organizations to deploy secure, efficient, and sovereign infrastructure. From enterprises to governments, our use cases demonstrate GeoMind's potential to generate value, ensure sovereignty, and support modern workloads.
|
||||
</p>
|
||||
</motion.div>
|
||||
</section>
|
||||
|
@@ -20,12 +20,26 @@ export default {
|
||||
800: '#343b8a',
|
||||
900: '#2d336c',
|
||||
},
|
||||
ink: '#111827',
|
||||
mist: '#f6f8fb',
|
||||
ink: '#000000',
|
||||
mist: '#fcfcf6',
|
||||
},
|
||||
boxShadow: {
|
||||
subtle: '0 20px 45px -25px rgba(18, 28, 132, 0.35)',
|
||||
},
|
||||
keyframes: {
|
||||
blink: {
|
||||
'0%, 100%': { opacity: 1 },
|
||||
'50%': { opacity: 0.35 },
|
||||
},
|
||||
'data-stream': {
|
||||
'0%': { backgroundPosition: '0% 50%' },
|
||||
'100%': { backgroundPosition: '200% 50%' },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
blink: 'blink 0.9s steps(2, start) infinite',
|
||||
'data-stream': 'data-stream 2.75s linear infinite',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
|
@@ -5,6 +5,6 @@ import react from '@vitejs/plugin-react'
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
server: {
|
||||
allowedHosts: ['coucha-royal-nontannic.ngrok-free.dev'],
|
||||
allowedHosts: ['coucha-royal-nontannic.ngrok-free.dev', 'reasonedly-avifaunal-wanda.ngrok-free.dev'],
|
||||
},
|
||||
})
|
||||
|