From 7a0a37568a0c5726d25ebf807d8d05c0e4faa74c Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 30 Jun 2025 23:14:14 -0700 Subject: add opengraph middleware --- middleware/src/app/layout.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 middleware/src/app/layout.tsx (limited to 'middleware/src/app/layout.tsx') diff --git a/middleware/src/app/layout.tsx b/middleware/src/app/layout.tsx new file mode 100644 index 0000000..a9eb425 --- /dev/null +++ b/middleware/src/app/layout.tsx @@ -0,0 +1,10 @@ +import type { ReactNode } from 'react' +import './globals.css'; + +export default function RootLayout({ children }: { children: ReactNode }) { + return ( + + {children} + + ) +} -- cgit v1.2.3