2023-10-17 09:06:09 -04:00

16 lines
312 B
TypeScript

import { redirect } from "next/navigation";
import { nip19 } from "nostr-tools";
export default function Layout(props: {
children: React.ReactNode;
params: {
npub?: string;
};
}) {
const key = props.params.npub;
if (key === "service-worker.js") {
redirect("/");
}
return props.children;
}