feat: Add 'Why Pulse' to the footer

Footer 'Why Pulse'
This commit is contained in:
Usman
2026-01-21 13:19:09 +01:00
committed by GitHub
2 changed files with 36 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
'use client'
import { Header, Footer } from '@ciphera-net/ui'
import { Header } from '@ciphera-net/ui'
import { Footer } from '@/components/Footer'
import { useAuth } from '@/lib/auth/context'
import Link from 'next/link'

34
components/Footer.tsx Normal file
View File

@@ -0,0 +1,34 @@
import Link from 'next/link'
import React from 'react'
interface FooterProps {
LinkComponent?: any
appName?: string
}
export function Footer({ LinkComponent = Link, appName = 'Pulse' }: FooterProps) {
const Component = LinkComponent
return (
<footer className="border-t border-neutral-200 dark:border-neutral-800 mt-auto bg-white dark:bg-neutral-950">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div className="flex flex-col md:flex-row justify-between items-center gap-4">
<div className="text-sm text-neutral-500 dark:text-neutral-400">
© {new Date().getFullYear()} Ciphera. All rights reserved.
</div>
<div className="flex gap-6 text-sm font-medium text-neutral-600 dark:text-neutral-300">
<Component href="/about" className="hover:text-brand-orange transition-colors">
Why {appName}
</Component>
<Component href="/security" className="hover:text-brand-orange transition-colors">
Security
</Component>
<Component href="/faq" className="hover:text-brand-orange transition-colors">
FAQ
</Component>
</div>
</div>
</div>
</footer>
)
}