3 Commits

Author SHA1 Message Date
6cf7f3adcd Update src/app/styles/base.css 2026-04-27 09:54:36 +00:00
2d922f7299 Update src/app/layout.tsx 2026-04-27 09:54:35 +00:00
6f610b7c7d Merge version_9 into main
Merge version_9 into main
2026-04-27 09:53:01 +00:00
2 changed files with 6 additions and 5 deletions

View File

@@ -23,8 +23,9 @@ export const metadata: Metadata = {
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export default function RootLayout({
@@ -35,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${archivo.variable} antialiased`}>
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-raleway), sans-serif;
font-family: var(--font-archivo), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-raleway), sans-serif;
font-family: var(--font-archivo), sans-serif;
}