index.js 514 B

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