import React from 'react'; import { Footer } from '@/ui/Footer'; interface AppFooterProps { children?: React.ReactNode; } /** * AppFooter is the bottom section of the application. */ export function AppFooter({ children }: AppFooterProps) { return (