feat(ui): Roboto font, GooSeek logo, remove custom fonts

- Replace Open Sans with Roboto (YouTube-style typography)
- Add GooSeek wordmark in Google colors above 'Research begins here'
- Remove PP Editorial, Instrument Serif from globals.css and components
- Unify font across frontend and auth-mcs

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
home
2026-02-20 17:52:13 +03:00
parent ed4c11e553
commit 0989eed206
8 changed files with 35 additions and 28 deletions

View File

@@ -1,4 +1,12 @@
import type { Metadata } from 'next';
import { Roboto } from 'next/font/google';
const roboto = Roboto({
weight: ['300', '400', '500', '700'],
subsets: ['latin'],
display: 'swap',
fallback: ['Arial', 'sans-serif'],
});
export const metadata: Metadata = {
title: 'Auth Service — Identity Provider',
@@ -12,7 +20,7 @@ export default function RootLayout({
}) {
return (
<html lang="ru">
<body style={{ margin: 0, fontFamily: 'system-ui, sans-serif' }}>{children}</body>
<body className={roboto.className} style={{ margin: 0 }}>{children}</body>
</html>
);
}