From 06f84c7dcfab973efdff71d8ae6ec2a99b42cdd2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:24:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9215b20..7c2c32a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SCALENZA - Technology Platform for Global Franchise Growth", description: "Advanced technology platform transforming franchise expansion worldwide. Intelligent automation, real-time analytics, and predictable growth for global franchise systems.", keywords: "franchise technology, global franchise growth, franchise expansion platform, enterprise franchise solutions, predictable franchise scaling, international franchise automation", metadataBase: new URL("https://scalenza.com"), - alternates: { - canonical: "https://scalenza.com"}, - openGraph: { - title: "SCALENZA - Global Franchise Technology Platform", description: "Advanced technology platform for intelligent, scalable franchise expansion worldwide.", url: "https://scalenza.com", siteName: "SCALENZA", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV64qLDViQ8fXh668ee5UaJJsc/a-sophisticated-dashboard-interface-show-1772665548956-856cf142.png", alt: "SCALENZA Technology Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SCALENZA - Global Franchise Technology Platform", description: "Advanced technology platform for intelligent, scalable franchise expansion worldwide.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV64qLDViQ8fXh668ee5UaJJsc/a-sophisticated-dashboard-interface-show-1772665548956-856cf142.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SCALENZA - Enterprise Technology for Global Franchise Scaling", description: "Transform franchise expansion worldwide through intelligent automation, real-time analytics, and predictable growth engines. Enterprise-grade technology for global franchise systems."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}