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
  1. Get started by editing pages/index.js.
  2. Save and see your changes instantly.
Vercel logomark Deploy now Read our docs
); }