This commit is contained in:
Emre
2025-10-11 13:38:27 +03:00
parent d3fd2db514
commit 5df98adbaf
8 changed files with 24 additions and 11 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
public/images/node.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
public/videos/chip_vid.mp4 Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -9,7 +9,7 @@ const footerLinksColumn1 = [
]; ];
const footerLinksColumn2 = [ const footerLinksColumn2 = [
{ label: 'Manual', to: '/manual' }, { label: 'Manual', href: 'https://manual.grid.tf' },
{ label: 'Privacy', to: '/privacy' }, { label: 'Privacy', to: '/privacy' },
]; ];
@@ -24,8 +24,9 @@ export const Footer = () => {
<span className="text-xs font-bold uppercase tracking-[0.35em] text-white"> <span className="text-xs font-bold uppercase tracking-[0.35em] text-white">
Geomind Geomind
</span> </span>
<p className="max-w-sm text-sm font-semibold text-white"> <p className="max-w-sm text-xs font-medium uppercase tracking-[0.3em] text-white">
The datacenter standard for the next era of cloud and AI. </p> <span className="text-brand-400">Geomind.</span> The datacenter standard for the next era of cloud and AI.
</p>
</div> </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"> <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"> <div className="flex flex-col items-start gap-4">
@@ -36,11 +37,23 @@ export const Footer = () => {
))} ))}
</div> </div>
<div className="flex flex-col items-start gap-4"> <div className="flex flex-col items-start gap-4">
{footerLinksColumn2.map(({ label, to }) => ( {footerLinksColumn2.map(({ label, to, href }) =>
<Link key={to} to={to} className="text-white transition-colors duration-300"> href ? (
<a
key={label}
href={href}
target="_blank"
rel="noreferrer"
className="text-white transition-colors duration-300"
>
{label}
</a>
) : (
<Link key={label} to={to} className="text-white transition-colors duration-300">
{label} {label}
</Link> </Link>
))} ),
)}
<button <button
onClick={() => setIsContactFormOpen(true)} onClick={() => setIsContactFormOpen(true)}
className="text-white transition-colors duration-300 hover:text-brand-400 uppercase" className="text-white transition-colors duration-300 hover:text-brand-400 uppercase"

View File

@@ -18,7 +18,7 @@ const records = [
layout: 'lg:col-span-3', layout: 'lg:col-span-3',
}, },
{ {
title: 'The First Multi-site Consistent Database (2010)', title: 'The First Multi-Site Consistent Database (2010)',
description: 'Delivered failover that preserved every transaction across sovereign sites.', description: 'Delivered failover that preserved every transaction across sovereign sites.',
layout: 'lg:col-span-3 lg:row-span-2', layout: 'lg:col-span-3 lg:row-span-2',
showStream: true, showStream: true,

View File

@@ -59,7 +59,7 @@ export const TrackRecord = () => {
Our team has been at the forefront of datacenter and cloud innovation for over two decades, building systems that were faster, safer, and more scalable than anything before. Our team has been at the forefront of datacenter and cloud innovation for over two decades, building systems that were faster, safer, and more scalable than anything before.
</p> </p>
<p className="mt-4 text-base text-slate-300 sm:text-lg"> <p className="mt-4 text-base text-slate-300 sm:text-lg">
Our team has built some of the worlds most advanced Internet and cloud technologies which were acquired by some of the biggest names in the space. We have built some of the worlds most advanced Internet and cloud technologies which were acquired by some of the biggest names in the space.
</p> </p>
</div> </div>

View File

@@ -5,6 +5,6 @@ import react from '@vitejs/plugin-react'
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
server: { server: {
allowedHosts: ['coucha-royal-nontannic.ngrok-free.dev'], allowedHosts: ['coucha-royal-nontannic.ngrok-free.dev', 'reasonedly-avifaunal-wanda.ngrok-free.dev'],
}, },
}) })