Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-04 19:07:22 +00:00
2 changed files with 27 additions and 70 deletions

View File

@@ -1,74 +1,32 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import './globals.css';
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: '--font-geist-sans',
subsets: ['latin'],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: '--font-geist-mono',
subsets: ['latin'],
});
export const metadata: Metadata = {
title: "Command Your AI Empire | Imperium Enterprise Dashboard",
description: "Production-ready enterprise command center for AI agencies. Real-time multitenant control, AI agent fleet management, and white-labeled client transparency. $15K/mo precision platform.",
keywords: "enterprise dashboard, AI management, multitenant platform, AI agents, real-time intelligence, SaaS platform, agency management",
metadataBase: new URL("https://imperium.ai"),
alternates: {
canonical: "https://imperium.ai",
},
openGraph: {
title: "Command Your AI Empire in Real Time | Imperium",
description: "Control every agent, campaign, and revenue stream from a single surgical interface. Real-time metrics, predictive intelligence, and white-labeled client transparency.",
url: "https://imperium.ai",
siteName: "Imperium",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUc5mGjhlxVkFiHx2Jcz4OwYr7/a-sleek-luxury-enterprise-ai-dashboard-i-1772650569837-243e67e7.png",
alt: "Imperium Enterprise Dashboard Command Center",
},
],
},
twitter: {
card: "summary_large_image",
title: "Command Your AI Empire | Imperium Enterprise Dashboard",
description: "Control 50+ client accounts, AI agent fleets, and revenue streams from one command center.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUc5mGjhlxVkFiHx2Jcz4OwYr7/a-sleek-luxury-enterprise-ai-dashboard-i-1772650569837-243e67e7.png"],
},
robots: {
index: true,
follow: true,
},
title: 'Create Next App',
description: 'Generated by create next app',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1394,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -70,14 +70,6 @@ export default function HomePage() {
tag="Enterprise Command Center"
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[
{ text: "Enter Command Center", href: "/admin" },
{ text: "View Client Portal", href: "/client-portal" },
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUc5mGjhlxVkFiHx2Jcz4OwYr7/a-sleek-luxury-enterprise-ai-dashboard-i-1772650569837-243e67e7.png?_wi=1"
imageAlt="Imperium AI Enterprise Dashboard Interface"
mediaAnimation="blur-reveal"
avatars={[
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUc5mGjhlxVkFiHx2Jcz4OwYr7/professional-headshot-of-a-confident-exe-1772650569631-7ff61e6d.png", alt: "CEO"
@@ -90,6 +82,14 @@ export default function HomePage() {
},
]}
avatarText="Trusted by 150+ Enterprise Teams"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUc5mGjhlxVkFiHx2Jcz4OwYr7/a-sleek-luxury-enterprise-ai-dashboard-i-1772650569837-243e67e7.png?_wi=1"
imageAlt="Imperium AI Enterprise Dashboard Interface"
mediaAnimation="blur-reveal"
buttons={[
{ text: "Enter Command Center", href: "/admin" },
{ text: "View Client Portal", href: "/client-portal" },
]}
buttonAnimation="slide-up"
/>
</div>
@@ -342,4 +342,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}