92d1345503
Add a vinyl-record favicon (icon.svg) — fixes the favicon.ico 404 console error. Lightweight toast system (ToastHost + toast()) fired on request, wanted add, search, follow, and want actions so submits give explicit feedback. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
615 B
TypeScript
24 lines
615 B
TypeScript
import "./globals.css";
|
|
import "./design.css";
|
|
import { fraunces } from "./fonts";
|
|
import { Masthead } from "./_ui/masthead";
|
|
import { ContentsNav } from "./_ui/contents-nav";
|
|
import { ToastHost } from "./_ui/toast";
|
|
|
|
export const metadata = { title: "Lyra" };
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className={fraunces.variable} suppressHydrationWarning>
|
|
<body>
|
|
<div className="wrap">
|
|
<Masthead />
|
|
<ContentsNav />
|
|
{children}
|
|
</div>
|
|
<ToastHost />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|