import { useId } from 'react' import { PencilSquareIcon, PhotoIcon, UserGroupIcon, FaceSmileIcon, SparklesIcon, RocketLaunchIcon } from '@heroicons/react/20/solid' import { Container } from '@/components/Container' const features = [ { name: 'Post statuses, with photos', description: 'With unlimited attachments per post, you can share photos, videos, and more.', icon: PhotoIcon, }, { name: 'Follow people anywhere on the fediverse', description: 'Keep up with your friends and collect them into lists to customise what posts you see!', icon: UserGroupIcon, }, { name: 'React to your friends’ posts', description: 'Have something to say, but not something you can put into words? React to posts with emojis!', icon: FaceSmileIcon, }, { name: 'Post Misskey Markdown', description: 'Create fancy animations with rich markup!', icon: SparklesIcon, }, { name: 'Edit your posts, as many times as you want', description: 'There\'s no limit to how many times you can edit your posts, so you can make sure they\'re perfect!', icon: PencilSquareIcon, }, { name: 'Enjoy a substantial speed upgrade', description: 'Akkoma is consistently 30-50% faster than Pleroma when handling common operations!', icon: RocketLaunchIcon, }, ] export function SecondaryFeatures() { return (

What can I do with Akkoma?

) }