3 Commits

Author SHA1 Message Date
f444cecfc9 Update src/app/page.tsx 2026-01-17 17:43:39 +00:00
cf67dc6f47 Update src/app/layout.tsx 2026-01-17 17:43:38 +00:00
c6275514ae Update src/app/globals.css 2026-01-17 17:43:37 +00:00
3 changed files with 8 additions and 7 deletions

View File

@@ -509,7 +509,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-fira-code), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -522,5 +522,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-fira-code), sans-serif;
font-family: var(--font-poppins), sans-serif;
}

View File

@@ -1,11 +1,12 @@
import type { Metadata } from "next";
import { Fira_Code } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const firaCode = Fira_Code({
variable: "--font-fira-code", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
@@ -36,7 +37,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={firaCode.variable}
className={poppins.variable}
>
<Tag />
{children}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';