4516cdee4b
- landing/: Next.js 15 app for arcrun.dev (dashboard, integrations, API docs, login). Deploys via Cloudflare Pages — CI scan skips this via pages_build_output_dir marker. - builtins/: minimal Hono Worker at arcrun-builtins (/init for one-shot component registry seeding). initComponents logic is flagged stale in src/index.ts for future rewrite. - BETA_TEST.md: pre-launch validation playbook. - README.md: updated to match current arcrun.dev / acr CLI flow. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
28 lines
761 B
TypeScript
28 lines
761 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "arcrun — Stop fighting OAuth",
|
|
description: "One API key. Every service. Works anywhere. arcrun handles Google, Notion, GitHub, Slack authentication so your code doesn't have to.",
|
|
openGraph: {
|
|
title: "arcrun — Stop fighting OAuth",
|
|
description: "One API key. Every service. Works anywhere.",
|
|
url: "https://arcrun.dev",
|
|
siteName: "arcrun",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="h-full">
|
|
<body className="min-h-full flex flex-col bg-[#0a0a0a] text-[#ededed]">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|