Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 173ca66898 | |||
| 7e75f293c9 | |||
| da5cf478e8 | |||
| 6d53b001a7 | |||
| d672a143bb | |||
| f75957a38c | |||
| 98a0bf4fb9 |
@@ -1,55 +1,15 @@
|
|||||||
import type { Metadata } from "next";
|
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Lato } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
export const metadata = {
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
title: "Invest - Smart Investing Made Simple", description: "Manage your portfolio, track market trends, and grow your wealth with our intuitive investment platform. Start investing in minutes with zero commissions."};
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const lato = Lato({
|
|
||||||
variable: "--font-lato", subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "700", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
|
||||||
title: "Invest - Smart Investment Platform", description: "Manage your investments with zero commissions. Track portfolios, get real-time market data, and grow your wealth on our intuitive investing platform.", keywords: "investment app, stock trading, portfolio management, ETF investing, commission-free trading", robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Invest - Smart Investment Platform", description: "Start investing today with zero commissions. Join 500K+ investors managing $50B+ in assets.", siteName: "Invest", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWFewmYpG3ykxzA8FUgaRAmkbr/a-modern-investment-dashboard-interface--1772700576756-47c9d6f2.png", alt: "Investment Dashboard"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Invest - Smart Investment Platform", description: "Start investing with zero commissions. Real-time market data, portfolio tracking, and smart alerts.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWFewmYpG3ykxzA8FUgaRAmkbr/a-modern-investment-dashboard-interface--1772700576756-47c9d6f2.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>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1377,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ export default function LandingPage() {
|
|||||||
id: "basic", badge: "Starter", badgeIcon: Zap,
|
id: "basic", badge: "Starter", badgeIcon: Zap,
|
||||||
price: "Free", subtitle: "Perfect for beginners", buttons: [
|
price: "Free", subtitle: "Perfect for beginners", buttons: [
|
||||||
{ text: "Get Started", href: "https://app.invest.example.com" },
|
{ text: "Get Started", href: "https://app.invest.example.com" },
|
||||||
{ text: "Learn More", href: "#" },
|
{ text: "Learn More", href: "#features" },
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Up to 5 tracked investments", "Basic market data", "Mobile app access", "Email support"],
|
"Up to 5 tracked investments", "Basic market data", "Mobile app access", "Email support"],
|
||||||
|
|||||||
Reference in New Issue
Block a user