Improved image expansion in Projects. Introduced Mods page.

This commit is contained in:
Hunter
2026-08-17 16:00:38 -04:00
parent 0365ef716f
commit 885c41e2bc
22 changed files with 639 additions and 46 deletions

View File

@@ -1,6 +1,11 @@
import { ProjectProvider } from "../../context/ProjectContext";
import { getProjectDetails } from "@/data/content";
/**
* Layout for all paths caught under project/[slug]
*/
export default async function SlugLayout({children, params}: {
children: React.ReactNode;
params: Promise<{ slug: string }>;