Files
pawol.nu/app/pwopose/layout.js
T
2023-08-09 17:21:42 +04:00

39 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export const metadata = {
title: 'OKI | Proposer une parole de chanson',
description: 'Proposez la transcription dune parole, accompagnée dune ou plusieurs traductions.',
openGraph: {
title: 'OKI | Proposer une parole de chanson',
description: 'Proposez la transcription dune parole, accompagnée dune ou plusieurs traductions.',
url: 'https://oki.re/pwopose',
siteName: 'OKI | Organisation KA Internationale. Paroles et traductions.',
images: [
{
url: 'https://oki.re/logo-512x512.png',
width: 512,
height: 512
}
],
locale: 'fr_FR',
type: 'website'
},
twitter: {
site: '@OrganisationKA',
card: 'summary_large_image',
title: 'OKI | Proposer une parole de chanson',
description: 'Proposez la transcription dune parole, accompagnée dune ou plusieurs traductions.',
creator: '@OrganisationKA',
images: {
url: 'https://oki.re/logo-512x512.png',
alt: 'OKI Logo',
},
}
}
export default async function PwoposeLayout({children}) {
return (
<section>
{children}
</section>
)
}