import { Button } from '@fluid-design/fluid-ui'; import { ArrowRightIcon } from '@heroicons/react/24/outline'; import React from 'react'; import 'swiper/css'; import 'swiper/css/navigation'; import 'swiper/css/pagination'; import { featuresList } from '@/lib/index/data'; import { FluidDesign } from '@/components/FluidDesign'; import { Page } from '@/components/framework'; import UnstyledLink from '@/components/framework/UnstyledLink'; import IndexCanvas from '@/components/index/IndexCanvas'; import IndexDemoWindow from '@/components/index/IndexDemoWindow'; import FeatureCard from '@/components/ui/FeatureCard'; export default function Home() { const meta = { title: 'Fluid Design', description: 'Beautiful React components that are responsive, supports features like dark mode and a11y with elegant transitions.', }; return (
Fluid Design

Modern UI components with smooth transitions.

Beautiful React UI that are responsive, supports features like dark mode and a11y with elegant transitions.

Looks right' isn't enough.

Many UI libraries and component designs often only focus on the design and bare functionalities. They cover the majority of users' needs. However, some component designs may not suit users who rely on accessibility features like screen reader, high-contrast, and reduce-motion. Fluid Design aims to create components that works for all users.

{featuresList.map((list) => ( ))}
); }