'use client' import { clsx } from 'clsx' import { motion } from 'framer-motion' import { Subheading } from './text' import { Container } from './Container' export default function BentoSection() { function BentoCard({ dark = false, className = '', eyebrow, title, description, graphic, fade = [], link = '/', }) { return (
{graphic} {fade.includes('top') && (
)} {fade.includes('bottom') && (
)}
{eyebrow}

{title}

{description}

Learn More
) } return (

Features

Collaboration & Creation Tools

Transform how you and your team work together with our innovative creative tools and explore diverse scenarios where they empower users to collaborate in immersive virtual environments.

} fade={['bottom']} className="max-lg:rounded-t-4xl lg:col-span-3 lg:rounded-tl-4xl" link="/features" /> } fade={['bottom']} className="lg:col-span-3 lg:rounded-tr-4xl" link="/features" /> } fade={['bottom']} className="lg:col-span-2 lg:rounded-bl-4xl" /> } fade={['bottom']} className="lg:col-span-2" link="/features" /> } fade={['bottom']} className="max-lg:rounded-b-4xl lg:col-span-2 lg:rounded-br-4xl" link="/features" />
) }