moved all the pages into [locale]

This commit is contained in:
2024-02-16 15:51:26 +01:00
parent 64bd026d46
commit ba0934e8cd
19 changed files with 0 additions and 93 deletions

14
app/[locale]/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import '@/app/ui/global.css';
import { inter } from '@/app/ui/fonts';
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={`${inter.className} antialiased`}>{children}</body>
</html>
);
}