7 Commits

Author SHA1 Message Date
173ca66898 Update src/app/page.tsx 2026-03-05 09:02:20 +00:00
7e75f293c9 Update src/app/layout.tsx 2026-03-05 09:02:19 +00:00
da5cf478e8 Merge version_2 into main
Merge version_2 into main
2026-03-05 08:59:47 +00:00
6d53b001a7 Merge version_2 into main
Merge version_2 into main
2026-03-05 08:58:17 +00:00
d672a143bb Merge version_2 into main
Merge version_2 into main
2026-03-05 08:56:57 +00:00
f75957a38c Merge version_2 into main
Merge version_2 into main
2026-03-05 08:55:23 +00:00
98a0bf4fb9 Merge version_2 into main
Merge version_2 into main
2026-03-05 08:53:51 +00:00
2 changed files with 7 additions and 48 deletions

View File

@@ -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({
variable: "--font-halant", subsets: ["latin"],
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 const metadata = {
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1377,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -126,7 +126,7 @@ export default function LandingPage() {
id: "basic", badge: "Starter", badgeIcon: Zap,
price: "Free", subtitle: "Perfect for beginners", buttons: [
{ text: "Get Started", href: "https://app.invest.example.com" },
{ text: "Learn More", href: "#" },
{ text: "Learn More", href: "#features" },
],
features: [
"Up to 5 tracked investments", "Basic market data", "Mobile app access", "Email support"],