mirror of
https://github.com/tiennm99/llmapikey.git
synced 2026-07-18 14:17:26 +00:00
26 lines
595 B
JavaScript
26 lines
595 B
JavaScript
import "./globals.css";
|
|
|
|
import { SiteHeader } from "@/components/site-header";
|
|
|
|
export const metadata = {
|
|
title: "llmapikey — pending OpenRouter API key giveaway",
|
|
description:
|
|
"Pending free, capped OpenRouter API key giveaway — paused until a suitable provider is selected.",
|
|
};
|
|
|
|
/**
|
|
* Root layout wrapping every page with the session-aware site header.
|
|
*
|
|
* @param {{ children: React.ReactNode }} props
|
|
*/
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<SiteHeader />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|