4 Commits

Author SHA1 Message Date
488ef000c1 Merge version_2 into main
Merge version_2 into main
2026-03-04 22:26:03 +00:00
95c953fe06 Update src/app/page.tsx 2026-03-04 22:25:59 +00:00
5e8709068e Update src/app/layout.tsx 2026-03-04 22:25:58 +00:00
fa85132982 Merge version_1 into main
Merge version_1 into main
2026-03-04 17:58:08 +00:00
2 changed files with 7 additions and 44 deletions

View File

@@ -1,56 +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 { Poppins } 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 poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = { 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: { title: "Nexus - AI-Powered Automation", description: "The future of intelligent automation. Join the waitlist for early access."};
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"],
},
};
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} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
title="The Future of AI-Powered Automation" title="The Future of AI-Powered Automation"
description="Join thousands of forward-thinking teams already on the waitlist. Experience real-time intelligence, predictive insights, and autonomous workflows that transform how you work." description="Join thousands of forward-thinking teams already on the waitlist. Experience real-time intelligence, predictive insights, and autonomous workflows that transform how you work."
buttons={[ buttons={[
{ text: "Join the Waitlist", href: "#contact" }, { text: "Secure Early Access", href: "#contact" },
{ text: "Watch Demo", href: "https://youtube.com" } { text: "Watch Demo", href: "https://youtube.com" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"