| 12345678910111213141516 |
- import Head from 'next/head'
- import styles from '../styles/Layout.module.css'
- const temp2 = () => {
- return (
- <div className={styles.container}>
- <Head>
- <title> Page 4</title>
- <meta name='keywords' content='hawkband,texas bands, pflugervile bands'/>
- </Head>
- <h1>page temp 2</h1>
- </div>
- )
- }
- export default temp2
|