7 Commits

Author SHA1 Message Date
b97f89b7db Update src/app/page.tsx 2026-01-23 00:18:13 +00:00
99bb8854ae Update src/app/layout.tsx 2026-01-23 00:18:13 +00:00
8e24c6a5c7 Update src/app/globals.css 2026-01-23 00:18:12 +00:00
87ff75ab77 Update src/app/craft/page.tsx 2026-01-23 00:18:11 +00:00
6416c33631 Update src/app/contact/page.tsx 2026-01-23 00:18:10 +00:00
8ca5bddedb Update src/app/blog/page.tsx 2026-01-23 00:18:09 +00:00
58d8f7c56d Update src/app/about/page.tsx 2026-01-23 00:18:09 +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>
);
}
}