Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-04 22:50:59 +00:00
2 changed files with 9 additions and 40 deletions

View File

@@ -1,51 +1,20 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Nexo - Seamless Integration Platform for Teams", description: "Connect your workflows, simplify collaboration, and accelerate growth with Nexo. The next-generation platform trusted by leading companies worldwide.", keywords: "integration platform, workflow automation, collaboration software, team productivity, enterprise integration", metadataBase: new URL("https://nexoplatform.com"),
alternates: {
canonical: "https://nexoplatform.com"},
openGraph: {
title: "Nexo - Seamless Integration Platform", description: "Connect your workflows, simplify collaboration, and accelerate growth with Nexo.", url: "https://nexoplatform.com", siteName: "Nexo", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-watching-business-conference-computer-screen-looking-statistics_482257-125563.jpg", alt: "Nexo Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "Nexo - Seamless Integration Platform", description: "Connect your workflows, simplify collaboration, and accelerate growth with Nexo.", images: ["http://img.b2bpic.net/free-photo/woman-watching-business-conference-computer-screen-looking-statistics_482257-125563.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Nexo - Seamless Integration for Modern Teams", description: "Nexo connects your workflows, simplifies collaboration, and accelerates growth. Build powerful connections between your tools and people."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -69,7 +69,8 @@ export default function LandingPage() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "About Nexo" }
{ type: "text", content: "About Nexo: " },
{ type: "text", content: "Connecting Teams, Accelerating Growth" }
]}
useInvertedBackground={false}
buttons={[
@@ -211,4 +212,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}