website refactor
This commit is contained in:
@@ -1,17 +1,15 @@
|
||||
import React from 'react';
|
||||
import { Footer } from '@/ui/Footer';
|
||||
|
||||
interface AppFooterProps {
|
||||
children?: React.ReactNode;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* AppFooter is the bottom section of the application.
|
||||
*/
|
||||
export function AppFooter({ children, className = '' }: AppFooterProps) {
|
||||
export function AppFooter({ children }: AppFooterProps) {
|
||||
return (
|
||||
<footer className={`bg-[#141619] border-t border-[#23272B] py-8 px-4 md:px-6 ${className}`}>
|
||||
{children}
|
||||
</footer>
|
||||
<Footer />
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user