mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 04:42:12 +01:00
19 lines
426 B
TypeScript
19 lines
426 B
TypeScript
import Head from "next/head";
|
|
// import styles from "@/styles/Home.module.css";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Create Next App</title>
|
|
<meta name="description" content="Generated by create next app" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
<main>
|
|
<h1>Home</h1>
|
|
</main>
|
|
</>
|
|
);
|
|
}
|