Spaces:
Runtime error
Runtime error
File size: 775 Bytes
5dfa78d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import Head from 'next/head'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>nextjs-docker-starter</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
<h1 className={styles.title}>
<a href="https://nextjs.org">Next.js</a> in Docker on π€ Spaces!
</h1>
</main>
<footer className={styles.footer}>
<a
href="https://failfa.st"
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
<img src="/failfast.svg" alt="failfast Logo" className={styles.logo} />
</a>
</footer>
</div>
)
}
|