Files
pawol.nu/app/layout.js
T

72 lines
2.3 KiB
JavaScript
Raw Normal View History

2026-04-21 19:32:05 +04:00
import TopLoader from '../components/top-loader'
2023-07-22 13:02:11 +04:00
import Navigasyon from '../components/navigasyon'
import ThemeRegistry from './theme-registy'
export const metadata = {
metadataBase: new URL('https://oki.re'),
manifest: '/manifest.json',
2024-06-01 20:23:46 +04:00
title: 'OKI | ORGANISATION KA INTERNATIONALE. Paroles et traductions.',
description: 'ORGANISATION KA INTERNATIONALE a pour but de promouvoir le Medukam (ou Wanni Wannan) et les productions afro-diasporiques.',
2023-07-22 13:02:11 +04:00
author: 'OKI',
category: 'music',
creator: 'OKI',
publisher: 'OKI',
2024-06-01 20:23:46 +04:00
applicationName: 'OKI | ORGANISATION KA INTERNATIONALE. Paroles et traductions.',
2023-07-22 13:02:11 +04:00
openGraph: {
2024-06-01 20:23:46 +04:00
title: 'OKI | ORGANISATION KA INTERNATIONALE. Paroles et traductions.',
description: 'ORGANISATION KA INTERNATIONALE a pour but de promouvoir le Medukam (ou Wanni Wannan) et les productions afro-diasporiques.',
2023-07-22 13:02:11 +04:00
url: 'https://oki.re',
2024-06-01 20:23:46 +04:00
siteName: 'OKI | ORGANISATION KA INTERNATIONALE. Paroles et traductions.',
2023-07-22 13:02:11 +04:00
images: [
{
2023-08-09 17:21:42 +04:00
url: 'https://oki.re/logo-512x512.png',
2023-07-22 13:02:11 +04:00
width: 512,
height: 512
}
],
locale: 'fr_FR',
type: 'website'
},
twitter: {
site: '@OrganisationKA',
card: 'summary_large_image',
2024-06-01 20:23:46 +04:00
title: 'OKI | ORGANISATION KA INTERNATIONALE. Paroles et traductions.',
description: 'ORGANISATION KA INTERNATIONALE a pour but de promouvoir le Medukam (ou Wanni Wannan) et les productions afro-diasporiques.',
2023-07-22 13:02:11 +04:00
creator: '@OrganisationKA',
images: {
url: 'https://oki.re/logo-512x512.png',
alt: 'OKI Logo',
},
}
}
const jsonLd = {
'@context': 'https://schema.org',
'@type': 'Organization',
url: 'https://oki.re',
2024-04-28 13:43:31 +04:00
email: 'kontak@o-k-i.net',
2024-06-01 20:23:46 +04:00
keywords: ['OKI', 'ORGANISATION KA INTERNATIONALE', 'Paroles', 'Pawol', 'Medukam', 'Wanni Wannan'],
legalName: 'ORGANISATION KA INTERNATIONALE',
2023-07-22 13:02:11 +04:00
location: 'Île de La Réunion'
}
export default async function RootLayout({children, Session}) {
return (
2026-04-16 13:56:39 +04:00
<html lang='fr' suppressHydrationWarning>
2023-07-22 13:02:11 +04:00
<body>
2026-04-21 19:32:05 +04:00
<TopLoader color='#ffeb3b' />
2026-04-28 12:39:29 +04:00
<ThemeRegistry>
<Navigasyon />
{children}
</ThemeRegistry>
2023-07-22 13:02:11 +04:00
<section>
<script
type='application/ld+json'
dangerouslySetInnerHTML={{__html: JSON.stringify(jsonLd)}}
/>
</section>
</body>
</html>
)
}