Compare commits

..

5 Commits

3 changed files with 6 additions and 6 deletions

View File

@@ -21,12 +21,12 @@ export default function Home() {
<section id="home-hero">
<HomeHero />
</section>
<section id="technologies">
<StackSectionPreview />
</section>
<section id="network">
<WorldMap />
</section>
<section id="technologies">
<StackSectionPreview />
</section>
<section id="bento-reviews">
<BentoReviews />
</section>

View File

@@ -5,7 +5,7 @@ import { motion } from 'framer-motion'
import { TypeAnimation } from 'react-type-animation'
import { Dialog, DialogPanel } from '@headlessui/react'
import { Bars3Icon, XMarkIcon, ChevronDoubleDownIcon } from '@heroicons/react/24/outline'
import { H1, PL } from '@/components/Texts'
import { H1, H2, PL } from '@/components/Texts'
const navigation = [
{ name: 'Product', href: '#' },
@@ -34,7 +34,7 @@ export function HomeHero() {
<div className="relative px-6 lg:px-8">
<div className="relative mx-auto flex h-screen max-w-8xl items-center justify-center">
<div className="text-center">
<div className="max-w-5xl">
<div className="max-w-6xl">
<H1 color="light">
<TypeAnimation
sequence={[

View File

@@ -1,7 +1,7 @@
"use client";
import { StackedCubes } from "@/components/ui/StackedCubes";
import { H2, P } from '@/components/Texts';
import { H1, H2, P } from '@/components/Texts';
import { FadeIn } from "./FadeIn";
export function StackSectionPreview() {