Merge version_1 into main #1
@@ -1,24 +1,50 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FinanceAI - Learn Finance Online | Courses, Lessons & Quizzes",
|
||||
description: "Master finance with interactive courses, video lessons, smart flashcards, and adaptive quizzes. Perfect for students learning investing, trading, and personal finance.",
|
||||
keywords: "finance education, online courses, learn investing, financial literacy, trading courses, personal finance",
|
||||
openGraph: {
|
||||
title: "FinanceAI - Master Finance with Interactive Learning",
|
||||
description: "Interactive finance education platform with courses, lessons, flashcards, and quizzes for students.",
|
||||
url: "https://financeai.com",
|
||||
siteName: "FinanceAI",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "FinanceAI - Learn Finance Online",
|
||||
description: "Master finance through interactive courses and adaptive learning tools.",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +53,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +67,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -58,7 +58,7 @@ export default function LearningPage() {
|
||||
{ text: "Start Learning", href: "/courses" },
|
||||
{ text: "View Pricing", href: "/pricing" },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AryOZjARotQaR3ocjapVTX4tS6/a-vibrant-modern-finance-education-dashb-1773365025975-cc508235.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AryOZjARotQaR3ocjapVTX4tS6/a-vibrant-modern-finance-education-dashb-1773365025975-cc508235.png?_wi=2"
|
||||
imageAlt="Finance AI Learning Dashboard"
|
||||
showDimOverlay={false}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
@@ -89,7 +89,7 @@ export default function HomePage() {
|
||||
href: "/#pricing"
|
||||
}
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AryOZjARotQaR3ocjapVTX4tS6/a-vibrant-modern-finance-education-dashb-1773365025975-cc508235.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AryOZjARotQaR3ocjapVTX4tS6/a-vibrant-modern-finance-education-dashb-1773365025975-cc508235.png?_wi=1"
|
||||
imageAlt="Finance AI Learning Dashboard"
|
||||
showDimOverlay={false}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user