|
|
|
|
@@ -1,55 +1,17 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Archivo } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const archivo = Archivo({
|
|
|
|
|
variable: "--font-archivo", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "PortfolioOptima - AI Stock Portfolio Optimization", description: "Visualize, analyze, and optimize your stock portfolio with AI-powered recommendations. Get real-time insights, smart rebalancing suggestions, and maximize your returns in seconds.", keywords: "portfolio optimization, stock portfolio management, investment analytics, AI portfolio advisor, portfolio rebalancing, wealth management, fintech", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "PortfolioOptima - Optimize Your Stock Portfolio with AI", description: "AI-powered portfolio optimization platform helping investors maximize returns with real-time analytics and smart rebalancing recommendations.", type: "website", siteName: "PortfolioOptima", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARchJkqlUMAcmJZKPhGfZjpEVI/a-modern-clean-stock-portfolio-dashboard-1772559025752-ad1c0e4d.png", alt: "PortfolioOptima dashboard showing portfolio metrics and optimization"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "PortfolioOptima - AI Stock Portfolio Optimization", description: "Visualize your holdings and get AI-powered rebalancing recommendations in seconds.", images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARchJkqlUMAcmJZKPhGfZjpEVI/a-modern-clean-stock-portfolio-dashboard-1772559025752-ad1c0e4d.png"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
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={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1417,7 +1379,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|