Merge version_2 into main #1

Merged
development merged 2 commits from version_2 into main 2025-12-27 15:43:50 +00:00
2 changed files with 6 additions and 6 deletions

View File

@@ -1,13 +1,13 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { IBM_Plex_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins",
const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-ibm-plex-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
@@ -49,7 +49,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} antialiased`}
className={`${ibmPlexSans.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { Award, Wheat, Sun, Cake } from "lucide-react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";