adding completed project

This commit is contained in:
James Perkins
2022-02-15 09:17:52 -05:00
parent 855f2f75bb
commit 4e97734a1a
31 changed files with 3159 additions and 80 deletions

14
components/Meta.js Normal file
View File

@@ -0,0 +1,14 @@
import Head from 'next/head'
export default function Meta(props) {
return (
<>
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charSet="utf-8" />
<title>{props.siteTitle}</title>
<meta name="Description" content={props.description}></meta>
</Head>
</>
)
}