Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 26 additions & 25 deletions src/app/[lang]/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Metadata } from "next";
import { LANGUAGES, type Lang, COUNTRIES, l } from "@/lib/i18n";

Check warning on line 2 in src/app/[lang]/layout.tsx

View workflow job for this annotation

GitHub Actions / Validate app

'l' is defined but never used

Check warning on line 2 in src/app/[lang]/layout.tsx

View workflow job for this annotation

GitHub Actions / Validate app

'COUNTRIES' is defined but never used

const BASE_URL = "https://clarvia.org";

Expand Down Expand Up @@ -72,31 +72,32 @@
}}
/>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org",
"@type": "Organization",
"name": "Clarvia ASBL",
"url": "https://clarvia.org",
"logo": "https://clarvia.org/clarvia-logo.png",
"description": "Clarvia helps bereaved families navigate administrative processes across Europe.",
"foundingDate": "2025",
"foundingLocation": {
"@type": "Place",
"name": "Luxembourg"
},
"nonprofitStatus": "NonprofitASBL",
"areaServed": {
"@type": "Place",
"name": "Luxembourg"
},
"sameAs": [
"https://github.com/clarvia-org"
]
})
}}
/>
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org",
"@type": "Organization",
"name": "Clarvia ASBL",
"url": "https://clarvia.org",
"logo": "https://clarvia.org/clarvia-logo.png",
"description": "Clarvia helps bereaved families navigate administrative processes across Europe.",
"foundingDate": "2025",
"foundingLocation": {
"@type": "Place",
"name": "Luxembourg"
},
"nonprofitStatus": "NonprofitASBL",
"areaServed": {
"@type": "Place",
"name": "Luxembourg"
},
"sameAs": [
"https://github.com/clarvia-org",
"https://clarvia.eu"
]
})
}}
/>
{LANGUAGES.map((l) => (
<link
key={l}
Expand Down
Loading