temp-page3.js 360 B

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