edit footer

This commit is contained in:
2024-10-14 18:13:00 +02:00
parent 14f947a91f
commit eb5cd83d24
2 changed files with 26 additions and 25 deletions

View File

@@ -1,16 +1,20 @@
import { Container } from '@/components/Container'
import { Logo } from '@/components/Logo'
export function Footer() {
return (
<footer className="flex-none py-16">
<Container className="flex flex-col items-center justify-between md:flex-row">
<Logo className="h-12 w-auto text-slate-900" />
<p className="mt-6 text-base text-slxate-500 md:mt-0">
Copyright &copy; {new Date().getFullYear()} Ourworld Holdings, All
rights reserved.
<p className="mt-6 text-base text-slate-500 md:mt-0">
&copy; {new Date().getFullYear()} OurWorld Holdings, All rights reserved.{' '}
<a href="https://library.threefold.me/info/legal/#/legal__terms_conditions_websites" className="text-blue-500 hover:underline">
Terms & Conditions
</a>{' '}
|{' '}
<a href="https://library.threefold.me/info/legal/#/legal__privacypolicy" className="text-blue-500 hover:underline">
Privacy Policy
</a>
</p>
</Container>
</footer>