2021-12-25 15:08:14 +01:00
|
|
|
const Footer = ({ app }) => {
|
|
|
|
return (
|
|
|
|
<footer>
|
2021-12-26 12:52:00 +01:00
|
|
|
<div className="theme-gradient h-8 w-full relative"></div>
|
|
|
|
<div className="p-4 flex flex-row bg-neutral -mt-4 z-0">
|
2021-12-25 15:08:14 +01:00
|
|
|
<p>Some content here</p>
|
|
|
|
<p>Some more content here</p>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Footer
|