mirror of
https://github.com/tiennm99/llmapikey.git
synced 2026-06-17 12:48:54 +00:00
8fcc705e2c
- replace stale plan-reference comments with intent-describing ones - move inline nav style to a .site-nav CSS class - drop dummy placeholder return in generate-key resolveConflict
26 lines
575 B
JavaScript
26 lines
575 B
JavaScript
import "./globals.css";
|
|
|
|
import { SiteHeader } from "@/components/site-header";
|
|
|
|
export const metadata = {
|
|
title: "llmapikey — free OpenRouter API key",
|
|
description:
|
|
"Get a free, capped OpenRouter API key — one per GitHub account. No signup beyond GitHub.",
|
|
};
|
|
|
|
/**
|
|
* 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>
|
|
);
|
|
}
|