You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
412 B
15 lines
412 B
import Head from 'next/head'
|
|
import styles from "../styles/Index.module.css"
|
|
|
|
export default function PageLayout(props: any) {
|
|
return (
|
|
<section className="container">
|
|
<section className={styles.banner}>
|
|
<h1>{process.env.NEXT_PUBLIC_MOTTO}</h1>
|
|
</section>
|
|
<article>
|
|
{props.children}
|
|
</article>
|
|
</section>
|
|
)
|
|
} |