Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aa321d800f | |||
| 551603bdc5 | |||
| 65253766db | |||
| e53a398525 | |||
| df926fcf90 | |||
| c47670cbc0 | |||
| 4620c63aee | |||
| ace086d57a | |||
| 8247acf832 | |||
| 5ecde5eb78 | |||
| 951da5d532 | |||
| 930221de18 | |||
| be388e43b1 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -41,8 +42,13 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -54,7 +60,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-font-family: var(--font-nunito), sans-serif;), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-font-family: var(--font-nunito), sans-serif;), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;), sans-serif;
|
||||
}
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
--background: #384659;
|
||||
--card: #f62727;
|
||||
--foreground: #29dfee;
|
||||
--primary-cta: #9B59B6;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #e0e0e0;
|
||||
--primary-cta: #b83fe7;
|
||||
--primary-cta-text: #000000;
|
||||
--secondary-cta: #20230e;
|
||||
--secondary-cta-text: #2a2a2a;
|
||||
--accent: #d8bfd8;
|
||||
--background-accent: #d1d8e0;
|
||||
|
||||
Reference in New Issue
Block a user