import Head from "next/head"; import Link from "next/link"; import React from "react"; import styles from "../styles/Home.module.css"; export async function getStaticProps(ctx) { return { props: {}, }; } export default function Home({}) { return (
Fo

Welcome to Next.js!

Get started by editing{" "} pages/index.js

Second Page →

Link

Examples →

Discover and deploy boilerplate example Next.js projects.

Deploy →

Instantly deploy your Next.js site to a public URL with Vercel.

); }