Created logic for creating lists
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-04-25 22:32:24 +02:00
parent ab57857deb
commit 28069a92f1
7 changed files with 185 additions and 105 deletions

View File

@@ -7,13 +7,15 @@ interface HomeLayoutProps {
}
const HomeLayout: FC<HomeLayoutProps> = (props) => {
return (
<div className={styles.root + ' space-x-6 pt-14'}>
<h1 className="text-2xl space-x-2">
<span>Wishes</span>
<span>/</span>
<span>{props.page}</span>
</h1>
<main className="pt-20">{props.children}</main>
<div className="bg-pink-50 min-h-screen">
<div className={styles.root + ' space-x-6 pt-14'}>
<h1 className="text-2xl space-x-2">
<span>Wishes</span>
<span>/</span>
<span>{props.page}</span>
</h1>
<main className="pt-20">{props.children}</main>
</div>
</div>
)
}