style: restore default heading and paragraph typography

This commit is contained in:
2026-06-18 17:20:33 +05:30
parent 62ebf1ebf6
commit d8fa02dc5d
3 changed files with 21 additions and 14 deletions

View File

@@ -1,14 +1,15 @@
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import { Geist_Mono, Poppins } from 'next/font/google';
import './globals.css';
import { ThemeProvider } from '@/providers/ThemeProvider';
import AppInitializer from '@/providers/AppInitializer';
import QueryProvider from '@/providers/QueryProvider';
import { Toaster } from '@/components/ui/sonner';
const geistSans = Geist({
variable: '--font-geist-sans',
const poppins = Poppins({
variable: '--font-poppins',
subsets: ['latin'],
weight: ['400', '500', '600', '700'],
});
const geistMono = Geist_Mono({
@@ -32,7 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
className={`${poppins.variable} ${geistMono.variable} antialiased`}
>
<ThemeProvider
attribute="class"