26 lines
749 B
TypeScript
26 lines
749 B
TypeScript
import { Steps } from "antd";
|
|
import Link from "next/link";
|
|
import { redirect } from "next/navigation";
|
|
import Lists from "./lists";
|
|
import { ArrowLeft } from "lucide-react";
|
|
|
|
export default function PepositoryPage() {
|
|
// return redirect("/app/apis");
|
|
const description = 'This is a description.';
|
|
return (
|
|
<div className=" w-11/12 lg:w-9/10 xl:w-11/12 mx-auto text-[1.75rem] text-[#737373">
|
|
|
|
<Link
|
|
// href="/manage"
|
|
href="javascript:history.back()"
|
|
className="flex items-center gap-1 text-sm duration-200 text-content-subtle hover:text-foreground"
|
|
>
|
|
<ArrowLeft className="w-4 h-4" /> Manage
|
|
</Link>
|
|
<div className="pt-[4rem]">
|
|
<Lists></Lists>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|