feat: restructure routes under [locale], add LanguageSwitcher

This commit is contained in:
2026-08-10 15:34:34 +02:00
parent 930b824902
commit a89095b5c4
7 changed files with 117 additions and 36 deletions
+1 -11
View File
@@ -1,13 +1,3 @@
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Ombrora — Telechargeur de videos',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="fr">
<body>{children}</body>
</html>
)
return children
}