diff --git a/app/[workspace]/project/[projectId]/settings/page.tsx b/app/[workspace]/project/[projectId]/(home)/settings/page.tsx similarity index 100% rename from app/[workspace]/project/[projectId]/settings/page.tsx rename to app/[workspace]/project/[projectId]/(home)/settings/page.tsx diff --git a/app/[workspace]/project/[projectId]/(workspace)/settings/page.tsx b/app/[workspace]/project/[projectId]/(workspace)/settings/page.tsx deleted file mode 100644 index 1876fe7c..00000000 --- a/app/[workspace]/project/[projectId]/(workspace)/settings/page.tsx +++ /dev/null @@ -1,258 +0,0 @@ -"use client"; - -import { useEffect, useState } from "react"; -import { useParams, useRouter } from "next/navigation"; -import { useSession } from "next-auth/react"; -import { toast } from "sonner"; -import { Loader2 } from "lucide-react"; - -interface Project { - id: string; - productName: string; - productVision?: string; - giteaRepo?: string; - giteaRepoUrl?: string; - status?: string; -} - -function SectionLabel({ children }: { children: React.ReactNode }) { - return ( -
- Configure {project?.productName ?? "this project"} -
- - {/* General */} -- Download your PRD or project data for external use. -
-