Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aafd8082f8 | |||
| 959713aa8d | |||
| 3662caff90 | |||
| 04f0983341 | |||
| f742410932 | |||
| 8c0e505d6c | |||
| f930456185 | |||
| c13e67e59a | |||
| 796f311566 | |||
| 6270e56521 | |||
| 2ec4f2cc65 | |||
| a9cdced096 | |||
| f966423f6d | |||
| c7a339b324 | |||
| ecc4c2eade | |||
| 32f671072f | |||
| 20ca7a620e | |||
| 97f1194931 | |||
| 35eb641f7d | |||
| 0b0635cc84 | |||
| 9648d31f15 | |||
| 51f3db29fd | |||
| f92673b438 | |||
| 3c0c73aa41 | |||
| dca606c449 | |||
| 3ddcb7e638 |
@@ -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 { Montserrat } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -18,8 +19,9 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -31,7 +33,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -220,4 +220,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-nunito), 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-nunito), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user