Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5eabf41d74 | |||
| 9f74d23169 | |||
| 31c94551e6 | |||
| 401a37f1ea | |||
| 2d752d1b87 | |||
| 005c646b21 | |||
| f364613ba2 |
@@ -1,73 +1,31 @@
|
|||||||
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={{
|
||||||
@@ -1436,7 +1394,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user