Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-04-28 12:26:22 +00:00
2 changed files with 7 additions and 2 deletions

View File

@@ -15,6 +15,11 @@ export const metadata: Metadata = {
description: 'Prakash Sweets offers authentic, handcrafted Indian sweets made with premium ingredients. Traditional recipes delivered to your door.',
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
@@ -28,7 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-open-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
}