mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-08-05 00:54:16 +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 <[email protected]>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
b95fbb468f
commit
41f70143d1
+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