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.
|
|
|
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>Copyright © 2021 DubbelNull vof <br/> Kvk 81343493 -- The Netherlands</p>
|
|
|
|
<p>Built by Pascal with NextJS, Netlify & Airtable <br/> Dutch language option coming soon</p>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
)
|
|
|
|
}
|