Update theme fonts

This commit is contained in:
2026-03-15 13:13:09 +00:00
parent cf6f6b8f66
commit 462dd6a792

View File

@@ -6,6 +6,7 @@ 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 { Mulish } from "next/font/google";
@@ -14,12 +15,10 @@ export const metadata: Metadata = {
description: 'Αγοράζουμε χρυσό, ασήμι & κοσμήματα στις καλύτερες τιμές στη Νίκαια. Άμεση εκτίμηση & πληρωμή. 5★ Google Rating. Καλέστε: 210 490 3880',
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export default function RootLayout({
@@ -30,7 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${mulish.variable} antialiased`}>
<Tag />
{children}
<script