chore: remove saved HTML file from images directory

This commit is contained in:
2025-11-06 20:48:43 +01:00
parent 9730129506
commit c14c0e92d4
75 changed files with 121 additions and 8156 deletions

View File

@@ -1,6 +1,6 @@
import { Container } from '../../components/Container'
import { Eyebrow, SectionHeader } from '../../components/Texts'
import { Container } from '@/components/Container'
import { Eyebrow, SectionHeader } from '@/components/Texts'
const components = [
{

View File

@@ -1,7 +1,7 @@
'use client'
import { Button } from '../../components/Button'
import { Eyebrow, P, H3 } from '../../components/Texts'
import { Button } from '@/components/Button'
import { Eyebrow, P, H3 } from '@/components/Texts'
export function AgentHeroAlt() {
return (

View File

@@ -1,6 +1,6 @@
import { motion } from 'framer-motion'
import { Container } from '../../components/Container'
import { Eyebrow, SectionHeader, P, CT, CP } from '../../components/Texts'
import { Container } from '@/components/Container'
import { Eyebrow, SectionHeader, P, CT, CP } from '@/components/Texts'
const items = [
{
@@ -19,7 +19,7 @@ const items = [
title: 'MOS Sandboxes',
subtitle: 'Secure Agent Workspaces',
description: 'Attested, signed workspaces spin up ≈5s worldwide—ready to execute. Hardware isolation and scoped egress: run hard, tear down clean, zero residue.',
video: '/videos/sandbox.mp4',
video: '/videos/herodb.mp4',
},
{
title: 'Mycelium Mesh',

View File

@@ -1,6 +1,6 @@
import { CircleBackground } from '../../components/CircleBackground'
import { Container } from '../../components/Container'
import { Button } from '../../components/Button'
import { Container } from '@/components/Container'
import { Button } from '@/components/Button'
export function CallToAction() {
return (

View File

@@ -2,8 +2,8 @@
import { useId, useState } from 'react'
import { Button } from '../../../components/Button'
import { Container } from '../../../components/Container'
import { Button } from '@/components/Button'
import { Container } from '@/components/Container'
import ContactForm from '../../../components/ContactForm'
function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) {