temp-page4.js 360 B

12345678910111213141516
  1. import Head from 'next/head'
  2. import styles from '../styles/Layout.module.css'
  3. const temp4 = () => {
  4. return (
  5. <div className={styles.container}>
  6. <Head>
  7. <title> Page 6</title>
  8. <meta name='keywords' content='hawkband,texas bands, pflugervile bands'/>
  9. </Head>
  10. <h1>page temp 4</h1>
  11. </div>
  12. )
  13. }
  14. export default temp4