Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 032c79962c | |||
| 44b7d8c8b1 | |||
| b0b6bfd078 | |||
| 695a24f348 |
@@ -1,48 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans, Inter } 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 publicSans = Public_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Day Trading Course | $7M+ Profits Strategy", description: "Learn day trading from a professional trader with 10 years experience and $7+ million in verified profits. Master risk management, technical analysis, and trading psychology.", keywords: "day trading course, trading education, day trader, trading strategies, forex trading, stock trading, trading psychology, risk management", metadataBase: new URL("https://tradevault.io"),
|
title: "TradeVault - Day Trading Mastery", description: "Master proven day trading strategies and turn trading expertise into consistent profits"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://tradevault.io"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Day Trading Course | Professional Trading Strategies", description: "Master day trading strategies from a pro trader. 10 years experience, $7M+ in profits. Join 5,000+ successful traders.", url: "https://tradevault.io", siteName: "TradeVault", type: "website"
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Day Trading Course | Master Professional Trading Strategies", description: "Learn from a professional day trader with $7M+ in verified profits. Join our comprehensive trading education program."
|
|
||||||
},
|
|
||||||
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={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -198,22 +198,22 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Is this course suitable for beginners?", content: "Yes, absolutely! While the course draws from professional trading experience, it's designed for traders at all levels. We start with fundamentals and progressively build advanced strategies. No prior trading experience is required."
|
id: "1", title: "Will I get the trading system immediately?", content: "Yes! You get instant access to all course materials upon enrollment. All video lessons, templates, indicators, and resources are available immediately in your member dashboard."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "How long does it take to complete the course?", content: "The Foundation course takes approximately 4-6 weeks if you dedicate 10-15 hours per week. The Pro and Elite tiers include ongoing live sessions and mentorship, providing long-term learning and support."
|
id: "2", title: "Is there ongoing support?", content: "Foundation tier includes lifetime access to materials and email support. Pro and Elite tiers include live weekly sessions, private community access, and dedicated support channels for enhanced guidance."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Will I get the trading system immediately?", content: "Yes! You get instant access to all course materials upon enrollment. All video lessons, templates, indicators, and resources are available immediately in your member dashboard."
|
id: "3", title: "Is this course suitable for beginners?", content: "Yes, absolutely! While the course draws from professional trading experience, it's designed for traders at all levels. We start with fundamentals and progressively build advanced strategies. No prior trading experience is required."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "What if I'm not profitable after the course?", content: "We offer a 90-day money-back guarantee on the Elite tier. However, profitability depends on your dedication, discipline, and market conditions. The course provides proven strategies; your execution determines results."
|
id: "4", title: "How long does it take to complete the course?", content: "The Foundation course takes approximately 4-6 weeks if you dedicate 10-15 hours per week. The Pro and Elite tiers include ongoing live sessions and mentorship, providing long-term learning and support."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5", title: "Do I need specific trading software or brokers?", content: "No. The strategies work with any major broker (TD Ameritrade, Interactive Brokers, E*TRADE, etc.) and charting platform (TradingView, Thinkorswim, etc.). We recommend broker-agnostic tools for flexibility."
|
id: "5", title: "What if I'm not profitable after the course?", content: "We offer a 90-day money-back guarantee on the Elite tier. However, profitability depends on your dedication, discipline, and market conditions. The course provides proven strategies; your execution determines results."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6", title: "Is there ongoing support after the course?", content: "Foundation tier includes lifetime access to materials and email support. Pro and Elite tiers include live weekly sessions, private community access, and dedicated support channels for enhanced guidance."
|
id: "6", title: "Do I need specific trading software or brokers?", content: "No. The strategies work with any major broker (TD Ameritrade, Interactive Brokers, E*TRADE, etc.) and charting platform (TradingView, Thinkorswim, etc.). We recommend broker-agnostic tools for flexibility."
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user