fixes
This commit is contained in:
BIN
public/images/motherboard.png
Normal file
BIN
public/images/motherboard.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
BIN
public/images/node.png
Normal file
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
BIN
public/videos/chip_vid.mp4
Normal file
Binary file not shown.
BIN
public/videos/galaxy_vid.mp4
Normal file
BIN
public/videos/galaxy_vid.mp4
Normal file
Binary file not shown.
@@ -9,7 +9,7 @@ const footerLinksColumn1 = [
|
||||
];
|
||||
|
||||
const footerLinksColumn2 = [
|
||||
{ label: 'Manual', to: '/manual' },
|
||||
{ label: 'Manual', href: 'https://manual.grid.tf' },
|
||||
{ label: 'Privacy', to: '/privacy' },
|
||||
];
|
||||
|
||||
@@ -24,8 +24,9 @@ export const Footer = () => {
|
||||
<span className="text-xs font-bold uppercase tracking-[0.35em] text-white">
|
||||
Geomind
|
||||
</span>
|
||||
<p className="max-w-sm text-sm font-semibold text-white">
|
||||
The datacenter standard for the next era of cloud and AI. </p>
|
||||
<p className="max-w-sm text-xs font-medium uppercase tracking-[0.3em] text-white">
|
||||
<span className="text-brand-400">Geomind.</span> The datacenter standard for 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">
|
||||
@@ -36,11 +37,23 @@ export const Footer = () => {
|
||||
))}
|
||||
</div>
|
||||
<div className="flex flex-col items-start gap-4">
|
||||
{footerLinksColumn2.map(({ label, to }) => (
|
||||
<Link key={to} to={to} className="text-white transition-colors duration-300">
|
||||
{footerLinksColumn2.map(({ label, to, href }) =>
|
||||
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}
|
||||
</Link>
|
||||
))}
|
||||
),
|
||||
)}
|
||||
<button
|
||||
onClick={() => setIsContactFormOpen(true)}
|
||||
className="text-white transition-colors duration-300 hover:text-brand-400 uppercase"
|
||||
|
@@ -18,7 +18,7 @@ const records = [
|
||||
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.',
|
||||
layout: 'lg:col-span-3 lg:row-span-2',
|
||||
showStream: true,
|
||||
|
@@ -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.
|
||||
</p>
|
||||
<p className="mt-4 text-base text-slate-300 sm:text-lg">
|
||||
Our team has built some of the world’s most advanced Internet and cloud technologies which were acquired by some of the biggest names in the space.
|
||||
We have built some of the world’s most advanced Internet and cloud technologies which were acquired by some of the biggest names in the space.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
@@ -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'],
|
||||
},
|
||||
})
|
||||
|
Reference in New Issue
Block a user