Compare commits
13 Commits
version_10
...
version_13
| Author | SHA1 | Date | |
|---|---|---|---|
| 4e269e3135 | |||
| 4fcaae8491 | |||
| adc514fc4d | |||
| 9d34020ddf | |||
| 5c3f694f3f | |||
| cae71e9e9a | |||
| 6193b3ba6a | |||
| c45f8d165c | |||
| 79e1955cf7 | |||
| a6e6c2bc3d | |||
| c0a6126c5d | |||
| ce36e4f8c6 | |||
| 382640dd82 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -40,13 +41,13 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -58,7 +59,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
font-family: var(--font-manrope), sans-serif;
|
||||
}
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #F9F0F0;
|
||||
--primary-cta: #ff6207;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--primary-cta: #f5f5f5;
|
||||
--primary-cta-text: #151515;
|
||||
--secondary-cta: #242325;
|
||||
--secondary-cta-text: #F9F0F0;
|
||||
--accent: #B49977;
|
||||
--background-accent: #B49977;
|
||||
|
||||
Reference in New Issue
Block a user