mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-18 19:46:39 +02:00
16 lines
407 B
TypeScript
16 lines
407 B
TypeScript
import type { Metadata } from "next";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Public Resources"
|
|
};
|
|
|
|
export interface ResourcesPageProps {
|
|
params: Promise<{ orgId: string }>;
|
|
}
|
|
|
|
export default async function ResourcesPage(props: ResourcesPageProps) {
|
|
const params = await props.params;
|
|
redirect(`/${params.orgId}/settings/resources/proxy`);
|
|
}
|