Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f809b7a6db | |||
| 5ffea10ca3 | |||
| 630996092c | |||
| 3b7dbc9036 | |||
| 6ecc93839c | |||
| bb826dc460 | |||
| 2a59b21658 | |||
| 04b0646ea8 | |||
| af930e82d4 | |||
| 2b445904f4 | |||
| 1df1410a3f | |||
| b099c00e3e | |||
| 0cdfc04ae3 | |||
| 2942ea6ffa | |||
| bf92bd815a | |||
| bb1ebd8c06 | |||
| 31f0b298cd | |||
| 21d88af3d2 | |||
| 6a44e211fe | |||
| 1cbf751d81 | |||
| 4d70baca9c | |||
| 983824e653 | |||
| 44f7ebc779 | |||
| 5a9c1ebc85 | |||
| 1b8408983d | |||
| 58821ca192 | |||
| 91fbb111e8 | |||
| 3b1ffad0ce | |||
| ba0a9836c9 | |||
| 0a817eb8c4 | |||
| e214d77810 | |||
| ed4d36fe0d | |||
| 8f571c4c0c | |||
| 5128b15571 |
@@ -7,6 +7,10 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Figtree } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,12 +24,14 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -37,7 +43,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), 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-montserrat), sans-serif;
|
||||
font-family: var(--font-archivo), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #120006e6;
|
||||
--primary-cta: #e63946;
|
||||
--background: #000000;
|
||||
--card: #0d7424;
|
||||
--foreground: #e2e15e;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #120006e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #000000;
|
||||
--background-accent: #000000;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user