Add & use HeadLayout

This commit is contained in:
2020-12-15 23:46:05 +01:00
parent 3a15fad116
commit 6cf85536d5
5 changed files with 61 additions and 15 deletions
+6 -3
View File
@@ -1,10 +1,13 @@
import axios from 'axios'
import Navigasyon from '../components/navigasyon'
import HeadLayout from '../components/head-layout'
export default function Home() {
return (
<Navigasyon selectedTab={0} />
<HeadLayout tab={0}>
<div>
Kay-la
</div>
</HeadLayout>
)
}