2026-06-26 00:34:04 +04:00
|
|
|
const siteName = process.env.NEXT_PUBLIC_SITE_NAME || 'PAWÒL-NU. Paroles et traductions.'
|
|
|
|
|
const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://pawol.nu'
|
|
|
|
|
const orgFullName = process.env.NEXT_PUBLIC_ORG_FULL_NAME || process.env.NEXT_PUBLIC_ORG_NAME || 'ORGANISATION KA INTERNATIONALE'
|
|
|
|
|
const twitterHandle = `@${process.env.NEXT_PUBLIC_TWITTER_USERNAME || 'OrganisationKA'}`
|
|
|
|
|
const sipoteTitle = `${siteName} | Soutenir ${orgFullName} !`
|
|
|
|
|
|
2023-07-22 13:08:28 +04:00
|
|
|
export const metadata = {
|
2026-06-26 00:34:04 +04:00
|
|
|
title: sipoteTitle,
|
2023-07-22 13:08:28 +04:00
|
|
|
description: 'Vous pouvez nous soutenir via Liberapay ou PayPal',
|
|
|
|
|
openGraph: {
|
2026-06-26 00:34:04 +04:00
|
|
|
title: sipoteTitle,
|
2023-07-22 13:08:28 +04:00
|
|
|
description: 'Vous pouvez nous soutenir via Liberapay ou PayPal.',
|
2026-06-26 00:34:04 +04:00
|
|
|
url: `${siteUrl}/sipote`,
|
|
|
|
|
siteName,
|
2023-07-22 13:08:28 +04:00
|
|
|
images: [
|
|
|
|
|
{
|
2026-06-26 00:34:04 +04:00
|
|
|
url: `${siteUrl}/sipote.png`,
|
2023-07-22 13:08:28 +04:00
|
|
|
width: 500,
|
|
|
|
|
height: 500
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
locale: 'fr_FR',
|
|
|
|
|
type: 'website'
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
2026-06-26 00:34:04 +04:00
|
|
|
site: twitterHandle,
|
2023-07-22 13:08:28 +04:00
|
|
|
card: 'summary_large_image',
|
2026-06-26 00:34:04 +04:00
|
|
|
title: sipoteTitle,
|
2023-07-22 13:08:28 +04:00
|
|
|
description: 'Vous pouvez nous soutenir via Liberapay ou PayPal.',
|
2026-06-26 00:34:04 +04:00
|
|
|
creator: twitterHandle,
|
2023-07-22 13:08:28 +04:00
|
|
|
images: {
|
2026-06-26 00:34:04 +04:00
|
|
|
url: `${siteUrl}/sipote.png`,
|
|
|
|
|
alt: `Sipòte ${process.env.NEXT_PUBLIC_ORG_NAME || 'OKI'}`,
|
2023-07-22 13:08:28 +04:00
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default async function SipoteLayout({children}) {
|
|
|
|
|
return (
|
|
|
|
|
<section>
|
|
|
|
|
{children}
|
|
|
|
|
</section>
|
|
|
|
|
)
|
|
|
|
|
}
|