fix metadata for public resources

This commit is contained in:
miloschwartz
2026-04-19 11:19:23 -07:00
parent 20ed9966b9
commit 967de0b79f
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ import type { Metadata } from "next";
import { redirect } from "next/navigation"; import { redirect } from "next/navigation";
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Proxy Resource" title: "Public Resource"
}; };
export default async function ResourcePage(props: { export default async function ResourcePage(props: {

View File

@@ -16,7 +16,7 @@ import { cache } from "react";
import type { Metadata } from "next"; import type { Metadata } from "next";
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Proxy Resources" title: "Public Resources"
}; };
export interface ProxyResourcesPageProps { export interface ProxyResourcesPageProps {