Files
proxy-bun/app/layout.tsx
T

20 lines
373 B
TypeScript
Raw Normal View History

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Edge Proxy Relay",
description: "Securely relay requests through Vercel Edge",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}