32 lines
1022 B
TypeScript
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>
|
|
);
|
|
}
|