Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a1631448d2 | |||
| 5ef46ee0d2 | |||
| 58a839fbb2 | |||
| 59ae2aaebc | |||
| cb4ec89b69 | |||
| 6cf2aa57eb | |||
| c5c90829e2 | |||
| 29c950147a | |||
| 6cf5ebf783 | |||
| ab765292e7 | |||
| 48695bcb12 | |||
| b8490a6096 | |||
| d8f5872c6b | |||
| ae319c5544 | |||
| 05a5015f33 | |||
| 3481ea5632 | |||
| f074d3c652 | |||
| ee23e6aeaf | |||
| 0baeccd362 | |||
| 58b77e911b | |||
| f6a3c2776d | |||
| d7dcd2bb38 | |||
| 303d756825 | |||
| f3a709a390 | |||
| 5d1bab4c94 | |||
| 41dfbfe310 |
@@ -7,6 +7,11 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,10 +25,21 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -34,7 +50,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${roboto.variable} antialiased`}>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-roboto), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-roboto), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
}
|
||||
|
||||
@@ -12,11 +12,11 @@
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000f06e6;
|
||||
--primary-cta: #0a7039;
|
||||
--foreground: #120006e6;
|
||||
--primary-cta: #e63946;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--secondary-cta-text: #120006e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user