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.
20 lines
392 B
20 lines
392 B
import styles from './index.module.scss';
|
|
import Layout from "../components/layout/layout";
|
|
|
|
export function Index() {
|
|
/*
|
|
* Replace the elements below with your own.
|
|
*
|
|
* Note: The corresponding styles are in the ./index.scss file.
|
|
*/
|
|
return (
|
|
<div className={styles.page}>
|
|
<Layout>
|
|
<p>home page !</p>
|
|
</Layout>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Index;
|