7 Commits

Author SHA1 Message Date
5eabf41d74 Update src/app/page.tsx 2026-03-04 19:07:17 +00:00
9f74d23169 Update src/app/layout.tsx 2026-03-04 19:07:16 +00:00
31c94551e6 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:05:48 +00:00
401a37f1ea Merge version_1 into main
Merge version_1 into main
2026-03-04 19:04:45 +00:00
2d752d1b87 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:02:27 +00:00
005c646b21 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:00:07 +00:00
f364613ba2 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:57:49 +00:00
2 changed files with 27 additions and 70 deletions

View File

@@ -1,74 +1,32 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from 'next/font/google';
import { Inter } from "next/font/google"; import './globals.css';
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", variable: '--font-geist-sans',
subsets: ["latin"], subsets: ['latin'],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", variable: '--font-geist-mono',
subsets: ["latin"], subsets: ['latin'],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Command Your AI Empire | Imperium Enterprise Dashboard", title: 'Create Next App',
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.", description: 'Generated by create next app',
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,
},
}; };
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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1436,7 +1394,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -70,14 +70,6 @@ export default function HomePage() {
tag="Enterprise Command Center" tag="Enterprise Command Center"
tagIcon={Zap} tagIcon={Zap}
tagAnimation="slide-up" 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={[ 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" 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" 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> </div>
@@ -342,4 +342,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }