Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e1dcf71904 | |||
| 4b01b55d2d | |||
| 9bb677692d | |||
| ef987aca61 | |||
| f9aa7a69ad | |||
| d06fcdd701 | |||
| dbe0a597bc | |||
| 86b19acb33 | |||
| cc3eabce15 |
@@ -1,63 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Inter } from "next/font/google";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Investora AI – Beginner Investment Learning Platform Pakistan",
|
||||
description: "Investora AI helps Pakistan youth learn investing with AI-powered tools, risk management education, and step-by-step guidance. No guaranteed returns—education first. Join today.",
|
||||
keywords: "investment Pakistan, beginner investing, AI investment tools, risk management, financial education, Investora AI, stock market learning, crypto education",
|
||||
metadataBase: new URL("https://www.investora.ai"),
|
||||
alternates: {
|
||||
canonical: "https://www.investora.ai",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Investora AI – Learn Smart. Invest Wise. Grow Strong.",
|
||||
description: "Premium financial education platform for Pakistan's young investors. AI-powered insights, risk management framework, and beginner-focused learning.",
|
||||
url: "https://www.investora.ai",
|
||||
siteName: "Investora AI",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARuhUTfn0g5SeVwrtPBZT5NHla/a-modern-premium-investment-dashboard-wi-1772567904161-e4f78942.png",
|
||||
alt: "Investora AI - Investment Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Investora AI – Learn Smart. Invest Wise. Grow Strong.",
|
||||
description: "AI-powered investment education for Pakistan's youth. Risk-focused, beginner-friendly learning platform.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARuhUTfn0g5SeVwrtPBZT5NHla/a-modern-premium-investment-dashboard-wi-1772567904161-e4f78942.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Investora AI - Investment Education for Pakistan", description: "AI-powered beginner investment education platform for Pakistan. Learn smart, invest wise, grow strong."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1425,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
@@ -76,7 +76,7 @@ export default function HomePage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
title="Start Your Investment Journey with Confidence"
|
||||
description="AI-powered beginner investment education platform for Pakistan. Learn smart, invest wise, grow strong. We provide education and guidance only—we do not manage client funds."
|
||||
description="AI-powered beginner investment education platform for Pakistan. Learn smart, invest wise, grow strong. Educational platform—no fund management. We provide education and guidance only—we do not manage client funds."
|
||||
tag="Financial Education"
|
||||
tagIcon={Sparkles}
|
||||
background={{ variant: "plain" }}
|
||||
@@ -169,7 +169,7 @@ export default function HomePage() {
|
||||
id: "starter", badge: "Starter Plan", badgeIcon: Sparkles,
|
||||
price: "PKR 2,999", subtitle: "Perfect for beginners starting their investment journey", buttons: [
|
||||
{ text: "Join Now", href: "#payment-instructions" },
|
||||
{ text: "Learn More", onClick: undefined },
|
||||
{ text: "View Payment Details", href: "#faq-6" },
|
||||
],
|
||||
features: [
|
||||
"Beginner Investment Course (8 modules)", "Weekly Market Updates & Analysis", "AI Q&A Support", "Risk Management Guide", "Portfolio Guidance Tools", "Access to Community Forum", "Monthly 1-on-1 Guidance Session"],
|
||||
@@ -178,7 +178,7 @@ export default function HomePage() {
|
||||
id: "pro", badge: "Pro Plan", badgeIcon: Crown,
|
||||
price: "PKR 5,999", subtitle: "For committed learners ready to master investing", buttons: [
|
||||
{ text: "Join Now", href: "#payment-instructions" },
|
||||
{ text: "Learn More", onClick: undefined },
|
||||
{ text: "View Payment Details", href: "#faq-6" },
|
||||
],
|
||||
features: [
|
||||
"All Starter features included", "Advanced Investment Strategies Module", "Weekly Live Q&A Sessions", "Advanced Portfolio Analysis Tools", "Personalized Investment Roadmap", "Priority AI Support (24-hour response)", "Crypto & Stock Market Deep Dive", "Tax Planning for Investors Guide"],
|
||||
|
||||
Reference in New Issue
Block a user