Move admin area to root subdomain
CI / quality (push) Waiting to run

This commit is contained in:
MOH
2026-03-12 00:15:12 +01:00
parent e7dab6f0ef
commit 87a597c872
50 changed files with 256 additions and 140 deletions
@@ -46,13 +46,13 @@ export function PortfolioProjectsOverview({
<div className="flex flex-wrap gap-2">
<Button asChild>
<Link href="/root/portfolio/projects/new">
<Link href="/portfolio/projects/new">
<Plus className="h-4 w-4" />
{copy.newProject}
</Link>
</Button>
<Button asChild variant="outline">
<Link href="/root/portfolio/categories">
<Link href="/portfolio/categories">
<Tags className="h-4 w-4" />
{copy.newCategory}
</Link>
@@ -62,7 +62,7 @@ export function PortfolioProjectsOverview({
<div className="flex flex-wrap gap-2">
<Button asChild variant={selectedCategory === "" ? "default" : "outline"}>
<Link href="/root/portfolio">{copy.all}</Link>
<Link href="/portfolio">{copy.all}</Link>
</Button>
{categories.map((category) => (
<Button
@@ -70,7 +70,7 @@ export function PortfolioProjectsOverview({
asChild
variant={selectedCategory === category.id ? "default" : "outline"}
>
<Link href={`/root/portfolio?category=${category.id}`}>
<Link href={`/portfolio?category=${category.id}`}>
{category.name.de || category.name.en || category.name.ar}
</Link>
</Button>