Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 41ab0f588a | |||
| b75ff26430 | |||
| 36e9e0842a | |||
| 4d570761f7 | |||
| 1fcbb38dcc | |||
| ba68db7899 | |||
| 70dd275c75 | |||
| 21c625ce5b | |||
| 932dc79296 | |||
| 2cfb363125 | |||
| a0c16ac221 | |||
| ac5c11ceb9 | |||
| 69e898a568 | |||
| de75df26db | |||
| e49232a4f0 | |||
| 3bec680694 | |||
| 5aa56d57cc | |||
| 45a67ee1ab | |||
| 2f183b0221 | |||
| 907e96b527 | |||
| 6a6b09a891 | |||
| 665febd5af | |||
| 3e0cb5fddd | |||
| f8be45163e | |||
| 53015dda7b | |||
| 46d4e0dd0f | |||
| a0c3462734 | |||
| 05d65dea09 |
@@ -8,6 +8,9 @@ import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -24,12 +27,12 @@ export const metadata: Metadata = {
|
||||
|
||||
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
|
||||
|
||||
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -41,7 +44,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body className={`${nunito.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-nunito), 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-nunito), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #120a00e6;
|
||||
--primary-cta: #FF7B05;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #120a00e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #FF7B05;
|
||||
--background: #A9AAA5;
|
||||
--card: #A9AAA5;
|
||||
--foreground: #080908;
|
||||
--primary-cta: #0e3a29;
|
||||
--primary-cta-text: #fffefe;
|
||||
--secondary-cta: #e7eecd;
|
||||
--secondary-cta-text: #080908;
|
||||
--accent: #35c18b;
|
||||
--background-accent: #ecebe4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user