20 lines
507 B
TypeScript
20 lines
507 B
TypeScript
import React from 'react'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
import { ExternalLink } from '@/components/external-link'
|
|
|
|
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}
|
|
>
|
|
<ExternalLink href="https://tabby.tabbyml.com">Tabby</ExternalLink>, an
|
|
opensource, self-hosted AI coding assistant .
|
|
</p>
|
|
)
|
|
}
|