/** * @license * SPDX-License-Identifier: Apache-2.0 */ import { motion } from "motion/react"; import { Youtube, TrendingUp, Wallet, PieChart, ArrowRight, ExternalLink } from "lucide-react"; const Logo = ({ className = "w-12 h-12" }: { className?: string }) => ( {/* Three growing bar chart columns forming a hexagon-like shape */} ); const YOUTUBE_URL = "https://www.youtube.com/@Know_Grow_Capital"; export default function App() { const fadeIn = { initial: { opacity: 0, y: 20 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true }, transition: { duration: 0.6 } }; return (
{/* Hero Section */}
{/* Background Accents */}

Know & Grow

CAPITAL

Learn to Know Your Money. Grow Your Wealth.

Start Learning on YouTube
{/* About Section */}

Financial Education Made Simple

Your go-to source for financial education, investing strategies, and building passive income streams — made simple for everyday Canadians. Based in Calgary, Alberta, we're dedicated to helping you navigate the Canadian financial landscape.

{/* What You'll Learn Section */}

What You'll Learn

{[ { title: "Investing Basics", desc: "Master the fundamentals of the stock market, ETFs, and building a diversified portfolio tailored for Canadians.", icon: TrendingUp, color: "bg-brand-primary" }, { title: "Passive Income Streams", desc: "Discover how to create multiple streams of income through dividends, real estate, and digital assets.", icon: Wallet, color: "bg-brand-purple" }, { title: "Budgeting & Wealth Building", desc: "Learn practical strategies to manage your cash flow, reduce debt, and accelerate your path to financial freedom.", icon: PieChart, color: "bg-brand-cyan" } ].map((card, idx) => (

{card.title}

{card.desc}

Watch Videos
))}
{/* YouTube CTA Section */}
{/* Gradient Background */}

Ready to grow your wealth?

Join our community of thousands of Canadians learning to take control of their financial future.

Watch on YouTube
{/* Footer */}
); }