Files
gridpilot.gg/apps/website/ui/AppFooter.tsx
2026-01-17 15:46:55 +01:00

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