1f09bba3ef
- 18 React components (Layout/Section/Article/Layer/Masthead/Rule + Headline/Subhead/Kicker/BodyText/Quote/Byline/Dateline/Caption + Image/Figure/Video/PullQuote) - Theme: warm off-white palette, Source Serif 4 / Cormorant Garamond / Inter / Noto Serif SC/JP, visual weight mapping, dark mode - Docs: Landing page, 6 Blocks (zh/en/jp), component API docs - GitHub Pages deployment via static export Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
20 lines
457 B
TypeScript
20 lines
457 B
TypeScript
import './globals.css';
|
|
import type { Metadata } from 'next';
|
|
import { Header } from '../components/Header';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'NewspaperUI — Production Newspaper Components',
|
|
description: '生产级报纸布局组件库',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="zh">
|
|
<body>
|
|
<Header />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|