Compare commits
15 Commits
version_8
...
version_13
| Author | SHA1 | Date | |
|---|---|---|---|
| 91513e41f7 | |||
| ea0e6eee6d | |||
| 6b65cecff2 | |||
| 384392ed69 | |||
| b2890c65d9 | |||
| 74a95ef98b | |||
| 5a7feea8bd | |||
| ea91e1bed2 | |||
| 2b253ea67f | |||
| 768d4b4571 | |||
| 78f3008605 | |||
| 13f92c4132 | |||
| 2f0e805f24 | |||
| ea3a5edc2a | |||
| 6d02d4ee87 |
@@ -7,6 +7,11 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Montserrat } from "next/font/google";
|
import { Montserrat } from "next/font/google";
|
||||||
|
import { Poppins } from "next/font/google";
|
||||||
|
import { Mulish } from "next/font/google";
|
||||||
|
import { Inter_Tight } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Public_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -20,12 +25,13 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
const publicSans = Public_Sans({
|
||||||
|
variable: "--font-public-sans",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -37,7 +43,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={`${publicSans.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-public-sans), 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-public-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #efebe5;
|
--background: #010912;
|
||||||
--card: #f7f2ea;
|
--card: #152840;
|
||||||
--foreground: #000000;
|
--foreground: #e6f0ff;
|
||||||
--primary-cta: #000000;
|
--primary-cta: #cee7ff;
|
||||||
--primary-cta-text: #efebe5;
|
--primary-cta-text: #010912;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #0e1a29;
|
||||||
--secondary-cta-text: #000000;
|
--secondary-cta-text: #ffffff;
|
||||||
--accent: #ffffff;
|
--accent: #3f5c79;
|
||||||
--background-accent: #e1b875;
|
--background-accent: #004a93;
|
||||||
|
|
||||||
/* 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