chore(web): add status page link in the footer

This commit is contained in:
isra el
2025-03-15 18:57:09 +03:00
parent 74bd7bc283
commit cce946e83a
2 changed files with 10 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
import { ExternalLinks } from '@/config/external-links'
import { Routes } from '@/config/routes'
import { MessageSquarePlus } from 'lucide-react'
import { MessageSquarePlus, Activity } from 'lucide-react'
import Link from 'next/link'
export default function Footer() {
return (
@@ -38,6 +38,14 @@ export default function Footer() {
>
Contribute
</Link>
<Link
className='text-sm font-medium group flex items-center gap-1.5 px-2.5 py-1 rounded-full bg-green-50 hover:bg-green-100 dark:bg-green-900/20 dark:hover:bg-green-900/30 transition-colors'
href={Routes.statusPage}
target='_blank'
>
<Activity className='h-3.5 w-3.5 text-green-500 group-hover:animate-pulse' />
<span className='text-green-700 dark:text-green-400'>Status</span>
</Link>
<Link
className='text-sm font-medium hover:text-blue-500'
href={Routes.privacyPolicy}

View File

@@ -13,4 +13,5 @@ export const Routes = {
privacyPolicy: '/privacy-policy',
refundPolicy: '/refund-policy',
termsOfService: '/terms-of-service',
statusPage: 'https://status.textbee.dev',
}