Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ef987aca61 | |||
| f9aa7a69ad | |||
| d06fcdd701 | |||
| dbe0a597bc | |||
| 86b19acb33 | |||
| cc3eabce15 |
@@ -1,63 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-source-sans-3",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Investora AI – Beginner Investment Learning Platform Pakistan",
|
title: "Investora AI - Investment Education for Pakistan", description: "AI-powered beginner investment education platform for Pakistan. Learn smart, invest wise, grow strong."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${sourceSans3.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1425,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -169,7 +169,7 @@ export default function HomePage() {
|
|||||||
id: "starter", badge: "Starter Plan", badgeIcon: Sparkles,
|
id: "starter", badge: "Starter Plan", badgeIcon: Sparkles,
|
||||||
price: "PKR 2,999", subtitle: "Perfect for beginners starting their investment journey", buttons: [
|
price: "PKR 2,999", subtitle: "Perfect for beginners starting their investment journey", buttons: [
|
||||||
{ text: "Join Now", href: "#payment-instructions" },
|
{ text: "Join Now", href: "#payment-instructions" },
|
||||||
{ text: "Learn More", onClick: undefined },
|
{ text: "View Payment Details", href: "#faq-6" },
|
||||||
],
|
],
|
||||||
features: [
|
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"],
|
"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,
|
id: "pro", badge: "Pro Plan", badgeIcon: Crown,
|
||||||
price: "PKR 5,999", subtitle: "For committed learners ready to master investing", buttons: [
|
price: "PKR 5,999", subtitle: "For committed learners ready to master investing", buttons: [
|
||||||
{ text: "Join Now", href: "#payment-instructions" },
|
{ text: "Join Now", href: "#payment-instructions" },
|
||||||
{ text: "Learn More", onClick: undefined },
|
{ text: "View Payment Details", href: "#faq-6" },
|
||||||
],
|
],
|
||||||
features: [
|
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"],
|
"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"],
|
||||||
@@ -269,4 +269,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user