Merge version_3 into main
Merge version_3 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -1,59 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Roboto } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Schedule Strategy Session", href: "#contact" },
|
{ text: "Get Started Free", href: "#contact" },
|
||||||
{ text: "Request Demo", href: "https://wa.me/5511999999999" },
|
{ text: "Request Demo", href: "https://wa.me/5511999999999" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user