import { PlusGrid, PlusGridItem, PlusGridRow } from '@/components/plus-grid' import { allPosts } from 'content-collections' import { Button } from './button' import { Container } from './container' import { Gradient } from './gradient' import { Link } from './link' import { Logo } from './logo' import { Subheading } from './text' function CallToAction() { return (
Get started

Ready to dive in?

Get started hosting Drop in 10 minutes or less, and explore all the features it has to offer.

) } function SitemapHeading({ children }: { children: React.ReactNode }) { return

{children}

} function SitemapLinks({ children }: { children: React.ReactNode }) { return } function SitemapLink(props: React.ComponentPropsWithoutRef) { return (
  • ) } function Sitemap() { const posts = allPosts.slice(0, 3) return ( <>
    Project About Sponsors
    Documentation Self-hosters Developers
    Support Discord GitHub Discussions
    {
    News {posts.map((post) => ( {post.title} ))}
    } ) } function SocialGithub(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function SocialDiscord(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function SocialLinks() { return ( <> ) } function Copyright() { return (
    © {new Date().getFullYear()} Drop OSS. Website licensed under AGPLv3 and Tailwind UI Plus (where applicable).
    ) } export function Footer() { return ( ) }