diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7f61034..9c41f50 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-