Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 72f3c4e0e5 | |||
| b745579c12 | |||
| 1eb5b20882 | |||
| b0def99271 | |||
| 51e4c2941e | |||
| ca0faf702e | |||
| 842e2a74a3 | |||
| 8fadd54ad2 | |||
| 0990f2ff3c | |||
| e07ea8d9e3 | |||
| 240ed18582 | |||
| d8181f711a | |||
| 146bdad100 | |||
| cda5b45e67 | |||
| dbba7aa60d | |||
| c360acd93a | |||
| ab813d17a4 | |||
| 71906de3d9 | |||
| 99498fc955 | |||
| ec696900cf | |||
| eb568cca7d | |||
| 767978f419 | |||
| e5577ab5aa | |||
| 3290bc341e | |||
| 0f55a38fb9 | |||
| c78b2c9f93 |
@@ -7,6 +7,12 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Archivo } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -41,8 +47,18 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo", subsets: ["latin"]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -53,7 +69,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -203,4 +203,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-archivo), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-archivo), sans-serif;
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user