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.

27 lines
1.0 KiB

import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Index.module.css'
export default function Home() {
return (
<div className="page">
<Head>
<title>{process.env.NEXT_PUBLIC_NAME}</title>
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
</Head>
<section className="container">
<section className={styles.banner}>
<h1>{process.env.NEXT_PUBLIC_MOTTO}</h1>
</section>
<article className={"content " + styles.indexanim}>
<h1 className={styles.description}>
DubbelNull is a small 2-man startup from The Netherlands developing and designing web applications.
We make all kinds of things with a range of technologies like Laravel, NextJS and Wordpress.
</h1>
</article>
</section>
</div>
)
}