Update theme fonts

This commit is contained in:
2026-06-10 23:08:05 +00:00
parent 93cae58f9f
commit f95d9a873d

View File

@@ -6,23 +6,20 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Expert SaaS Development | Launch & Scale Your Product',
description: 'Unlock your SaaS potential. Our specialized development team builds high-performance, secure, and scalable SaaS applications that drive innovation and user engagement.',
};
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -31,9 +28,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script