| 123456789101112131415161718192021222324252627 |
- import Head from 'next/head'
- import styles from '../styles/Layout.module.css'
- export default function Home() {
- return (
- <div className={styles.container}>
- <Head>
- <title> Homepage</title>
- <meta name='keywords' content='hawkband,texas bands, pflugervile bands'/>
- </Head>
- <h1>Homepage temp</h1>
- </div>
- )
- }
- //export const getStaticProps = async() =>{
- // const res = await fetch(docs)
- // const text = await res.docs
- //return{
- // props:{
- // text
- // }
- //}
- //}
|