9 Commits

Author SHA1 Message Date
63d6d5ef2e Update theme fonts 2026-05-07 15:07:10 +00:00
2d800a26a4 Update theme fonts 2026-05-07 15:07:10 +00:00
b00ae1c87b Update theme fonts 2026-05-07 15:06:28 +00:00
bcb4da950a Update theme fonts 2026-05-07 15:06:27 +00:00
3cefe52d7a Update theme fonts 2026-05-07 15:06:17 +00:00
2f76f19402 Update theme fonts 2026-05-07 15:06:16 +00:00
b2d6ebbc85 Update theme fonts 2026-05-07 15:06:15 +00:00
4ae736201b Update theme fonts 2026-05-07 15:06:15 +00:00
88dc0d6f30 Update theme colors 2026-05-07 15:05:46 +00:00
3 changed files with 14 additions and 11 deletions

View File

@@ -7,6 +7,10 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Manrope } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -15,13 +19,12 @@ export const metadata: Metadata = {
description: 'Experience the authentic taste of Rajasthan with our premium collection of traditional sweets and namkeens at Bikaner Sweets.',
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
@@ -33,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -13,7 +13,7 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f12;
--primary-cta: #15479c;
--primary-cta: #369c14;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;