Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-01-23 00:18:18 +00:00
7 changed files with 12 additions and 13 deletions

View File

@@ -116,4 +116,4 @@ export default function AboutPage() {
/>
</ThemeProvider>
);
}
}

View File

@@ -171,4 +171,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -110,4 +110,4 @@ export default function ContactPage() {
/>
</ThemeProvider>
);
}
}

View File

@@ -102,4 +102,4 @@ export default function CraftPage() {
/>
</ThemeProvider>
);
}
}

View File

@@ -578,7 +578,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-prata), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -591,5 +591,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-prata), sans-serif;
font-family: var(--font-inter), sans-serif;
}

View File

@@ -1,10 +1,9 @@
import type { Metadata } from "next";
import { Prata } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
const prata = Prata({
variable: "--font-prata", subsets: ["latin"],
weight: ["400"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -35,7 +34,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={`${prata.variable} antialiased`}>
<body className={`${inter.variable} antialiased`}>
{children}
<script
@@ -1258,4 +1257,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -168,4 +168,4 @@ export default function HomePage() {
/>
</ThemeProvider>
);
}
}