Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: replace default favicon with Barazo logo and use system fonts (#87)

- Generate proper Barazo favicon from logo SVG (16, 32, 48px)
- Switch body text from Source Sans 3 to system font stack
- Retain Source Code Pro for code blocks

authored by

Guido X Jansen and committed by
GitHub
b02cc418 406dc659

+3 -15
src/app/favicon.ico

This is a binary file and will not be displayed.

+1 -2
src/app/globals.css
··· 21 21 */ 22 22 23 23 @theme inline { 24 - /* Typography */ 25 - --font-sans: var(--font-source-sans); 24 + /* Typography -- system font stack for body, Source Code Pro for code */ 26 25 --font-mono: var(--font-source-code); 27 26 28 27 /* Radix Color Tokens - mapped to semantic roles */
+2 -13
src/app/layout.tsx
··· 1 1 import type { Metadata } from 'next' 2 - import { Source_Sans_3, Source_Code_Pro } from 'next/font/google' 2 + import { Source_Code_Pro } from 'next/font/google' 3 3 import './globals.css' 4 4 import { ThemeProvider } from '@/components/theme-provider' 5 5 import { AuthProvider } from '@/context/auth-context' 6 - 7 - const sourceSans = Source_Sans_3({ 8 - subsets: ['latin'], 9 - variable: '--font-source-sans', 10 - display: 'swap', 11 - weight: ['400', '500', '600', '700'], 12 - }) 13 6 14 7 const sourceCodePro = Source_Code_Pro({ 15 8 subsets: ['latin'], ··· 50 43 children: React.ReactNode 51 44 }>) { 52 45 return ( 53 - <html 54 - lang="en" 55 - className={`${sourceSans.variable} ${sourceCodePro.variable}`} 56 - suppressHydrationWarning 57 - > 46 + <html lang="en" className={sourceCodePro.variable} suppressHydrationWarning> 58 47 <body className="min-h-screen font-sans antialiased"> 59 48 <ThemeProvider 60 49 attribute="class"