18 lines
393 B
TypeScript
18 lines
393 B
TypeScript
import React from 'react';
|
|
|
|
interface AppFooterProps {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
/**
|
|
* AppFooter is the bottom section of the application.
|
|
*/
|
|
export function AppFooter({ children, className = '' }: AppFooterProps) {
|
|
return (
|
|
<footer className={`bg-[#141619] border-t border-[#23272B] py-8 px-4 md:px-6 ${className}`}>
|
|
{children}
|
|
</footer>
|
|
);
|
|
}
|