|
|
@@ -1,16 +1,19 @@
|
|
|
import Head from 'next/head'
|
|
|
+import React from 'react'
|
|
|
import styles from '../styles/Layout.module.css'
|
|
|
|
|
|
|
|
|
-export default function Home() {
|
|
|
+export default function Page(props) {
|
|
|
return (
|
|
|
- <div className={styles.container}>
|
|
|
+ <>
|
|
|
<Head>
|
|
|
<title> Homepage</title>
|
|
|
<meta name='keywords' content='hawkband,texas bands, pflugervile bands'/>
|
|
|
</Head>
|
|
|
- <h1>Homepage temp</h1>
|
|
|
- </div>
|
|
|
+ <section className={styles.container}>
|
|
|
+ <h1>Homepage temp</h1>
|
|
|
+ </section>
|
|
|
+ </>
|
|
|
)
|
|
|
}
|
|
|
|