2025-08-05 12:35:40 +07:00
|
|
|
// Component Imports
|
|
|
|
|
import LayoutFooter from '@layouts/components/vertical/Footer'
|
|
|
|
|
import FooterContent from './FooterContent'
|
|
|
|
|
|
|
|
|
|
const Footer = () => {
|
|
|
|
|
return (
|
2025-08-08 01:49:00 +07:00
|
|
|
// <LayoutFooter>
|
|
|
|
|
// <FooterContent />
|
|
|
|
|
// </LayoutFooter>
|
|
|
|
|
<></>
|
2025-08-05 12:35:40 +07:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Footer
|