13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
const Footer = ({ app }) => {
|
|
return (
|
|
<footer>
|
|
<div className="theme-gradient h-8 w-full relative"></div>
|
|
<div className="p-4 flex flex-row bg-neutral -mt-4 z-0">
|
|
<p>Some content here</p>
|
|
<p>Some more content here</p>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|
|
|
|
export default Footer
|