index.js 574 B

123456789101112131415161718192021222324252627282930
  1. import Head from 'next/head'
  2. import React from 'react'
  3. import styles from '../styles/Layout.module.css'
  4. export default function Page(props) {
  5. return (
  6. <>
  7. <Head>
  8. <title> Homepage</title>
  9. <meta name='keywords' content='hawkband,texas bands, pflugervile bands'/>
  10. </Head>
  11. <section className={styles.container}>
  12. <h1>Homepage temp</h1>
  13. </section>
  14. </>
  15. )
  16. }
  17. //export const getStaticProps = async() =>{
  18. // const res = await fetch(docs)
  19. // const text = await res.docs
  20. //return{
  21. // props:{
  22. // text
  23. // }
  24. //}
  25. //}