Merge version_1 into main #13

Merged
bender merged 2 commits from version_1 into main 2026-03-16 09:16:00 +00:00

View File

@@ -6,21 +6,8 @@ import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Luux Sign & More | Premium Branding & Signage Studio",
@@ -45,6 +32,11 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -53,9 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<body className={`${raleway.variable} antialiased`}>
{children}
<script