Welcome to InvestorFuel

Your daily dose of smart finance, investing tips, and money management strategies.

Latest Blog Posts

Sample Blog Title 1

This is a short summary of the blog post. Learn tips and tricks for better investing.

Read More →

Sample Blog Title 2

This is a short summary of the blog post. Learn tips and tricks for better investing.

Read More →

Sample Blog Title 3

This is a short summary of the blog post. Learn tips and tricks for better investing.

Read More →
import React, { useState } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Mail } from "lucide-react"; import { motion } from "framer-motion"; import Link from "next/link"; export default function HomePage() { const [email, setEmail] = useState(""); const handleSubscribe = () => { console.log("Subscribed:", email); // Future: Add integration with a mailing service or backend API }; const blogPosts = [ { id: 1, title: "How to Start Investing", summary: "Beginner-friendly guide to kickstart your investment journey.", slug: "how-to-start-investing", }, { id: 2, title: "Top 5 Budgeting Apps in 2025", summary: "Explore the best budgeting apps to manage your money smarter.", slug: "top-budgeting-apps-2025", }, { id: 3, title: "Passive Income Ideas", summary: "Generate income while you sleep with these powerful strategies.", slug: "passive-income-ideas", }, ]; return (
{/* Hero Section */}
Welcome to InvestorFuel Your daily dose of smart finance, investing tips, and money management strategies.
setEmail(e.target.value)} placeholder="Enter your email for updates" className="max-w-sm" />