sempero / src /app /layout.tsx
armand0e's picture
feat(markdown): add Prism-based syntax highlighting (rehype-prism-plus) and global theme; finalize LaTeX pipeline
ecbf6f1
raw
history blame contribute delete
612 Bytes
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "katex/dist/katex.min.css";
import "prismjs/themes/prism-tomorrow.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Qwen3 Claude Opus Chat",
description: "Chat with Qwen3-4B-Thinking-2507-Claude-4.5-Opus",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className="dark">
<body className={inter.className}>{children}</body>
</html>
);
}