Compare commits
23 Commits
version_16
...
version_37
| Author | SHA1 | Date | |
|---|---|---|---|
| d5b6a32dd2 | |||
| 809e5bbd2b | |||
| c8e2b4f6a3 | |||
| 3c9a0a143e | |||
| 7f7f259be0 | |||
| be186d467d | |||
| 92513dc17f | |||
| edb5c31a0d | |||
| 3bd86b95eb | |||
| 95ee2629de | |||
| 1e6d21a24d | |||
| 0a174ebda8 | |||
| 7b2c0c6e3a | |||
| c8869ea3ea | |||
| 354d5c54cb | |||
| c103b0f9b4 | |||
| a1714f4a0a | |||
| c71b954ad8 | |||
| 2fe45b6f2c | |||
| 70553c2672 | |||
| ed9a1ebf01 | |||
| 6881381f33 | |||
| 11e36995d3 |
@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -42,12 +43,13 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -59,7 +61,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.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-dm-sans), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,13 +10,13 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #000000;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #f5f5f5;
|
||||
--primary-cta: #71d1c7;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #4de4e2;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--background: #111111;
|
||||
--card: #adc9cd;
|
||||
--foreground: #FFFFFf;
|
||||
--primary-cta: #FF6B35;
|
||||
--primary-cta-text: #FFFFFF;
|
||||
--secondary-cta: #2D2D2D;
|
||||
--secondary-cta-text: #FFFFFF;
|
||||
--accent: #991b1b;
|
||||
--background-accent: #7f1d1d;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user