19 lines
534 B
JavaScript
19 lines
534 B
JavaScript
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 © {new Date().getFullYear()} Ourworld Holdings, All
|
|
rights reserved.
|
|
</p>
|
|
</Container>
|
|
</footer>
|
|
)
|
|
}
|