From 5e8709068efddc40c8a8dd6eefccbbc72e3b54a9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 22:25:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1a0240b..1766ee8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Nexus - AI-Powered Automation Platform | Pre-Launch Waitlist", description: "Join the waitlist for Nexus, the next-generation automation platform. Real-time intelligence, predictive insights, and autonomous workflows at scale. Limited early access spots available.", keywords: "automation, AI, SaaS, workflows, intelligent automation, machine learning, automation platform", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Nexus - Intelligent Automation Platform", description: "Transform your workflows with AI-powered automation. Join the waitlist for early access.", type: "website", siteName: "Nexus", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUUTB2itCSGSyhGCpD7dUASlQd/a-cutting-edge-software-dashboard-interf-1772646935179-95b38ed3.png", alt: "Nexus Dashboard Intelligence Hub"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nexus - AI Automation Platform", description: "Join thousands on the waitlist. Intelligent automation at scale.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUUTB2itCSGSyhGCpD7dUASlQd/a-cutting-edge-software-dashboard-interf-1772646935179-95b38ed3.png"], - }, -}; + title: "Nexus - AI-Powered Automation", description: "The future of intelligent automation. Join the waitlist for early access."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}