feat: use hardcodded benefits data

This commit is contained in:
Arvid Norlin
2024-05-10 14:09:48 +02:00
parent 9cec1e26d7
commit 7dd60576cc
5 changed files with 100 additions and 19 deletions

View File

@@ -0,0 +1,19 @@
import { Lang } from "@/constants/languages"
import DA from "./DA.json"
import DE from "./DE.json"
import EN from "./EN.json"
import FI from "./FI.json"
import NO from "./NO.json"
import SV from "./SV.json"
const levelsData = {
[Lang.en]: EN,
[Lang.sv]: SV,
[Lang.no]: NO,
[Lang.fi]: FI,
[Lang.da]: DA,
[Lang.de]: DE,
}
export default levelsData