mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-20 22:03:48 +00:00
design(admin): add Inter font, update page title to kill-the-news
Imports Inter 400/500/600/700 from Google Fonts to match the landing page typography. Updates browser tab title format. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+12
-2
@@ -15,10 +15,20 @@ export const Layout = ({ title, children }: LayoutProps) => {
|
|||||||
return (
|
return (
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>{title} - Email to RSS Admin</title>
|
<title>{title} — kill-the-news</title>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<meta name="color-scheme" content="light dark" />
|
<meta name="color-scheme" content="dark light" />
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
|
<link
|
||||||
|
rel="preconnect"
|
||||||
|
href="https://fonts.gstatic.com"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style dangerouslySetInnerHTML={{ __html: designSystem }} />
|
<style dangerouslySetInnerHTML={{ __html: designSystem }} />
|
||||||
<script dangerouslySetInnerHTML={{ __html: interactiveScripts + ";" }} />
|
<script dangerouslySetInnerHTML={{ __html: interactiveScripts + ";" }} />
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
Reference in New Issue
Block a user