You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
443 B
15 lines
443 B
3 years ago
|
import Head from 'next/head';
|
||
|
import Image from 'next/image';
|
||
|
import styles from '../styles/components/Footer.module.css';
|
||
|
import Link from 'next/link';
|
||
|
import logo from "../public/img/logoblue.png";
|
||
|
|
||
|
export default function Footer() {
|
||
|
return (
|
||
|
<footer className={styles.footer}>
|
||
|
<div className="container">
|
||
|
<p>© 2021 DubbelNull vof — Kvk nr. 81343493</p>
|
||
|
</div>
|
||
|
</footer>
|
||
|
)
|
||
|
}
|