Files
nexu-io--html-anything/next/src/app/layout.tsx
T
wehub-resource-sync e2bed4b5a2
CI / Public checks (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:27:29 +08:00

32 lines
1022 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "HTML Anything — the agentic HTML editor",
description:
"Markdown is the draft; HTML is what humans read. Your local AI agent writes HTML directly — decks, resumes, posters, knowledge cards, data reports, Hyperframes videos — one click to WeChat / X / Zhihu.",
metadataBase: new URL("https://html-anything.app"),
openGraph: {
title: "HTML Anything — the agentic HTML editor",
description: "Markdown is the draft. HTML is what humans read. Your local agent writes it.",
type: "website",
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="h-full antialiased" suppressHydrationWarning>
<body
className="min-h-full bg-[var(--paper)] text-[var(--ink)] selection:bg-[var(--coral)]/30"
suppressHydrationWarning
>
{children}
</body>
</html>
);
}