Add Footer to all pages

This commit is contained in:
2023-07-23 10:28:43 +04:00
parent d47f7e5585
commit b113266e2e
5 changed files with 13 additions and 1 deletions
+2
View File
@@ -8,6 +8,7 @@ import AwtisKat from '../../components/awtis/awtis-kat'
import Pajinasyon from '../../components/awtis/pajinasyon'
import {jwennAwtisPajinasyon} from '../../lib/oki-api'
import Footer from '../../components/footer'
export const metadata = {
title: 'OKI | Awtis - Liste des artistes',
@@ -70,6 +71,7 @@ export default async function AwitsPaj({searchParams}) {
{awtisPouChakPaj.data.map(artiste => <AwtisKat key={artiste.id} artiste={artiste.attributes} />)}
</Grid>
</Container>
<Footer />
</Box>
)
}