feat: implement sharing page

This commit is contained in:
shadcn 2023-06-16 17:06:23 +04:00
parent 137bdadaf9
commit 6962beb8e2
12 changed files with 113 additions and 69 deletions

23
components/footer.tsx Normal file
View file

@ -0,0 +1,23 @@
import React from 'react'
import { ExternalLink } from '@/components/external-link'
import { cn } from '@/lib/utils'
export function FooterText({ className, ...props }: React.ComponentProps<'p'>) {
return (
<p
className={cn(
'px-2 text-center text-xs leading-normal text-muted-foreground',
className
)}
{...props}
>
Open source AI chatbot built with{' '}
<ExternalLink href="https://nextjs.org">Next.js</ExternalLink> and{' '}
<ExternalLink href="https://vercel.com/storage/kv">
Vercel KV
</ExternalLink>
.
</p>
)
}