23 lines
724 B
TypeScript
23 lines
724 B
TypeScript
import React, { ReactNode } from 'react'
|
|
import { containerMaxW } from '../config'
|
|
|
|
type Props = {
|
|
children?: ReactNode
|
|
}
|
|
|
|
export default function FooterBar({ children }: Props) {
|
|
const year = new Date().getFullYear()
|
|
|
|
return (
|
|
<footer className={`border-t border-[#DDD5C7] px-5 py-5 text-sm text-[#6F6657] lg:px-8 ${containerMaxW}`}>
|
|
<div className="flex flex-col gap-2 md:flex-row md:items-center md:justify-between">
|
|
<div>
|
|
<b className='text-[#0E1A2B]'>© {year} Legal AI Governance Hub.</b>
|
|
<span className='ml-1'>{children}</span>
|
|
</div>
|
|
<div className="font-medium text-[#7A5B13]">Audit-ready AI adoption workspace</div>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|