chore: upgrade @ciphera-net/ui to v0.0.22 in package-lock.json

This commit is contained in:
Usman Baig
2026-01-27 18:06:53 +01:00
parent 41974dae53
commit 5dd785d2be
5 changed files with 486 additions and 0 deletions

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>
)
}