import Head from "next/head"; import Image from "next/image"; import { Geist, Geist_Mono } from "next/font/google"; import styles from "@/styles/Home.module.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export default function Home() { return ( <> Create Next App
Next.js logo

To get started, edit the index.js file.

Looking for a starting point or more instructions? Head over to{" "} Templates {" "} or the{" "} Learning {" "} center.

Vercel logomark Deploy Now Documentation
); }