36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import Image from 'next/image'
|
|
import Link from 'next/link'
|
|
|
|
import { Button } from '@/components/Button'
|
|
import { Container } from '@/components/Container'
|
|
import { TextField } from '@/components/Fields'
|
|
import { Logomark } from '@/components/Logo'
|
|
import { NavLinks } from '@/components/NavLinks'
|
|
import qrCode from '@/images/qr-code.svg'
|
|
|
|
function QrCodeBorder(props: React.ComponentPropsWithoutRef<'svg'>) {
|
|
return (
|
|
<svg viewBox="0 0 96 96" fill="none" aria-hidden="true" {...props}>
|
|
<path
|
|
d="M1 17V9a8 8 0 0 1 8-8h8M95 17V9a8 8 0 0 0-8-8h-8M1 79v8a8 8 0 0 0 8 8h8M95 79v8a8 8 0 0 1-8 8h-8"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer id="footer" className="border-t border-gray-800">
|
|
<Container>
|
|
<div className="flex justify-center py-8">
|
|
<p className="text-sm text-gray-400">
|
|
© Copyright OurWorld Holdings, {new Date().getFullYear()}. All rights reserved.
|
|
</p>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
)
|
|
}
|