Adding and Customizing Pages
Starting a New Page
// pages/myPage.js
import Head from 'next/head'
export default function MyPage() {
return (
<div>
<Head>
<title>My Page:: WebGeoDa Scaffolding</title>
<meta name="description" content="A Really Good Page." />
<link rel="icon" href="/favicon.ico" />
</Head>
Ahoy, Globe!
</div>
)
}Updating the Nav Bar
Last updated