feat: first shoot on translation

This commit is contained in:
Julien Froidefond
2025-02-27 11:31:39 +01:00
parent 3c46afb294
commit f39e4779cf
15 changed files with 635 additions and 143 deletions

View File

@@ -0,0 +1,8 @@
"use client";
import { PropsWithChildren, useEffect } from "react";
import "@/i18n/i18n";
export function I18nProvider({ children }: PropsWithChildren) {
return <>{children}</>;
}