feat: implement new feature for enhanced user experience

This commit is contained in:
2026-02-11 16:36:56 +00:00
parent 62f1906276
commit dc00d24899
75 changed files with 2456 additions and 35 deletions

View File

@@ -1,9 +1,11 @@
import "./css/style.css"
import App from "./App.svelte"
import { hydrate } from "svelte"
import { setupI18n } from "./lib/i18n/index"
let appContainer = document?.getElementById("appContainer")
// Initialize i18n before mounting the app
setupI18n().then(() => {
let appContainer = document?.getElementById("appContainer")
hydrate(App, { target: appContainer })
})
const app = hydrate(App, { target: appContainer })
export default app