File size: 1,767 Bytes
38c5e89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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" />
          <meta name="description" content="Next.js in Docker on πŸ€— Spaces" />
          <meta name="viewport" content="width=device-width, initial-scale=1" />
        </Head>

        <main className={styles.main}>
          <h1 className={styles.title}>
            <a
              href="https://nextjs.org"
              target="_blank"
              rel="noopener noreferrer"
            >
              Next.js
            </a>{" "}
            in{" "}
            <a
              href="https://www.docker.com"
              target="_blank"
              rel="noopener noreferrer"
            >
              Docker
            </a>{" "}
            on πŸ€—{" "}
            <a
              href="https://huggingface.co/spaces"
              target="_blank"
              rel="noopener noreferrer"
            >
              Spaces
            </a>
            !
          </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>
          <a
            href="https://github.com/failfa-st/nextjs-docker-starter"
            target="_blank"
            rel="noopener noreferrer"
          >
            {" "}
            Contribute on GitHub
          </a>
        </footer>
      </div>
    </>
  );
}