reason: locale removed from url

This commit is contained in:
Mahyar Khanbolooki
2025-07-27 17:00:24 +03:30
parent 852f34d363
commit 25e1df75e4
25 changed files with 13 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
import Link from "next/link";
export default function Home() {
return (
<div>
<Link href={'/auth'}>Auth</Link><br/>
<Link href={'/menu'}>Menu</Link><br/>
<Link href={'/'}>Index</Link><br/>
</div>
);
}