4 Commits

Author SHA1 Message Date
e0ac7973dc Update src/app/styles/base.css 2026-05-24 07:33:31 +00:00
f8016a39e6 Update src/app/page.tsx 2026-05-24 07:33:31 +00:00
7c635772ff Update src/app/layout.tsx 2026-05-24 07:33:31 +00:00
7035b25d84 Merge version_3 into main
Merge version_3 into main
2026-05-24 07:31:27 +00:00
3 changed files with 11 additions and 11 deletions

View File

@@ -6,6 +6,8 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google"; import { Libre_Baskerville } from "next/font/google";
import { Nunito } from "next/font/google";
import { Mulish } from "next/font/google";
@@ -23,14 +25,12 @@ export const metadata: Metadata = {
}, },
}; };
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", const nunito = Nunito({
subsets: ["latin"], variable: "--font-nunito", subsets: ["latin"],
weight: ["400", "700"],
}); });
const inter = Inter({ const mulish = Mulish({
variable: "--font-inter", variable: "--font-mulish", subsets: ["latin"],
subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -41,7 +41,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}> <body className={`${nunito.variable} ${mulish.variable} antialiased`}>
{children} {children}
<script <script

View File

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

View File

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