Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b75ff26430 | |||
| 36e9e0842a | |||
| 1fcbb38dcc | |||
| ba68db7899 | |||
| 21c625ce5b | |||
| 932dc79296 | |||
| a0c16ac221 | |||
| 69e898a568 | |||
| e49232a4f0 | |||
| 5aa56d57cc | |||
| 2f183b0221 | |||
| 6a6b09a891 | |||
| 665febd5af | |||
| f8be45163e |
@@ -8,6 +8,9 @@ import Tag from "@/tag/Tag";
|
|||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Public_Sans } from "next/font/google";
|
import { Public_Sans } from "next/font/google";
|
||||||
import { Montserrat } 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({
|
const nunito = Nunito({
|
||||||
variable: "--font-inter",
|
variable: "--font-nunito",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -41,7 +44,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
<body className={`${nunito.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter), sans-serif;
|
font-family: var(--font-nunito), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-montserrat), sans-serif;
|
font-family: var(--font-nunito), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #A9AAA5;
|
||||||
--card: #f9f9f9;
|
--card: #A9AAA5;
|
||||||
--foreground: #120a00e6;
|
--foreground: #080908;
|
||||||
--primary-cta: #FF7B05;
|
--primary-cta: #0e3a29;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #fffefe;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #e7eecd;
|
||||||
--secondary-cta-text: #120a00e6;
|
--secondary-cta-text: #080908;
|
||||||
--accent: #e2e2e2;
|
--accent: #35c18b;
|
||||||
--background-accent: #FF7B05;
|
--background-accent: #ecebe4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user