Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 41ab0f588a | |||
| b75ff26430 | |||
| 36e9e0842a | |||
| 4d570761f7 | |||
| 1fcbb38dcc | |||
| ba68db7899 | |||
| 70dd275c75 | |||
| 21c625ce5b | |||
| 932dc79296 | |||
| 2cfb363125 | |||
| a0c16ac221 | |||
| ac5c11ceb9 | |||
| 69e898a568 | |||
| de75df26db | |||
| e49232a4f0 | |||
| 3bec680694 | |||
| 5aa56d57cc | |||
| 45a67ee1ab | |||
| 2f183b0221 | |||
| 907e96b527 | |||
| 3e0cb5fddd | |||
| 53015dda7b | |||
| 46d4e0dd0f | |||
| a0c3462734 | |||
| 05d65dea09 |
@@ -9,6 +9,8 @@ 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 { Nunito_Sans } from "next/font/google";
|
||||||
|
import { Manrope } from "next/font/google";
|
||||||
|
import { Nunito } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -26,8 +28,11 @@ export const metadata: Metadata = {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
|
||||||
variable: "--font-nunito-sans",
|
|
||||||
|
|
||||||
|
const nunito = Nunito({
|
||||||
|
variable: "--font-nunito",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -39,7 +44,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${nunitoSans.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-nunito-sans), 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-nunito-sans), sans-serif;
|
font-family: var(--font-nunito), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,14 +11,14 @@
|
|||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #A9AAA5;
|
--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