callender.js 277 B

123456789101112131415
  1. import Head from 'next/head'
  2. import styles from '../styles/Layout.module.css'
  3. const temp1 = () => {
  4. return (
  5. <div className={styles.container}>
  6. <Head>
  7. <title> Page 3</title>
  8. </Head>
  9. <h1>page temp 1</h1>
  10. </div>
  11. )
  12. }
  13. export default temp1