investment / index.html
Jeffking11's picture
Add 3 files
68a35e9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WealthGrow - Smart Investment Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.chart-container {
height: 300px;
position: relative;
}
.investment-card {
transition: all 0.3s ease;
}
.investment-card:hover {
transform: scale(1.03);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<i class="fas fa-chart-line text-blue-600 text-2xl"></i>
<span class="text-xl font-bold text-gray-800">WealthGrow</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="nav-link text-gray-600 hover:text-blue-600">Home</a>
<a href="#invest" class="nav-link text-gray-600 hover:text-blue-600">Invest</a>
<a href="#learn" class="nav-link text-gray-600 hover:text-blue-600">Learn</a>
<a href="#about" class="nav-link text-gray-600 hover:text-blue-600">About</a>
<a href="#contact" class="nav-link text-gray-600 hover:text-blue-600">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 text-blue-600 border border-blue-600 rounded-md hover:bg-blue-50 transition">Login</button>
<button class="px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition">Sign Up</button>
<button class="md:hidden text-gray-600 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white py-20">
<div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Smart Investing Made Simple</h1>
<p class="text-xl mb-8 opacity-90">Start building your financial future with our easy-to-use investment platform. Get expert guidance and powerful tools to grow your wealth.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-3 bg-white text-blue-600 rounded-md font-semibold hover:bg-gray-100 transition">Get Started</button>
<button class="px-8 py-3 border border-white text-white rounded-md font-semibold hover:bg-white hover:bg-opacity-10 transition">Learn More</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-2xl p-6 max-w-md">
<div class="flex justify-between items-center mb-6">
<div>
<p class="text-sm opacity-80">Portfolio Value</p>
<h3 class="text-2xl font-bold">$12,458.32</h3>
</div>
<div class="bg-white bg-opacity-20 p-2 rounded-lg">
<i class="fas fa-chart-pie text-xl"></i>
</div>
</div>
<div class="chart-container mb-6">
<canvas id="portfolioChart"></canvas>
</div>
<div class="grid grid-cols-3 gap-4 text-center">
<div class="bg-white bg-opacity-10 p-2 rounded-lg">
<p class="text-sm opacity-80">Stocks</p>
<p class="font-semibold">45%</p>
</div>
<div class="bg-white bg-opacity-10 p-2 rounded-lg">
<p class="text-sm opacity-80">Bonds</p>
<p class="font-semibold">30%</p>
</div>
<div class="bg-white bg-opacity-10 p-2 rounded-lg">
<p class="text-sm opacity-80">Crypto</p>
<p class="font-semibold">25%</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<h3 class="text-4xl font-bold text-blue-600 mb-2">1M+</h3>
<p class="text-gray-600">Happy Investors</p>
</div>
<div class="p-6">
<h3 class="text-4xl font-bold text-blue-600 mb-2">$5B+</h3>
<p class="text-gray-600">Assets Managed</p>
</div>
<div class="p-6">
<h3 class="text-4xl font-bold text-blue-600 mb-2">9.8%</h3>
<p class="text-gray-600">Avg. Annual Return</p>
</div>
<div class="p-6">
<h3 class="text-4xl font-bold text-blue-600 mb-2">24/7</h3>
<p class="text-gray-600">Customer Support</p>
</div>
</div>
</div>
</section>
<!-- Investment Options -->
<section id="invest" class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Investment Options</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Choose from our diverse range of investment products tailored to your financial goals and risk appetite.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Stock Investment -->
<div class="bg-white rounded-xl shadow-md overflow-hidden investment-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-chart-line text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Stocks</h3>
</div>
<p class="text-gray-600 mb-6">Invest in shares of publicly traded companies with high growth potential.</p>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Risk Level</span>
<span class="text-sm font-medium">Medium-High</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-yellow-500 h-2 rounded-full" style="width: 70%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Avg. Return</span>
<span class="text-sm font-medium">7-12%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 80%"></div>
</div>
</div>
<button class="w-full py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition">Explore</button>
</div>
</div>
<!-- Bonds Investment -->
<div class="bg-white rounded-xl shadow-md overflow-hidden investment-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-file-invoice-dollar text-green-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Bonds</h3>
</div>
<p class="text-gray-600 mb-6">Fixed income securities that provide regular interest payments.</p>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Risk Level</span>
<span class="text-sm font-medium">Low-Medium</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-yellow-500 h-2 rounded-full" style="width: 40%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Avg. Return</span>
<span class="text-sm font-medium">3-6%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 50%"></div>
</div>
</div>
<button class="w-full py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition">Explore</button>
</div>
</div>
<!-- Crypto Investment -->
<div class="bg-white rounded-xl shadow-md overflow-hidden investment-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fab fa-bitcoin text-purple-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Crypto</h3>
</div>
<p class="text-gray-600 mb-6">Diversify with digital currencies and blockchain technology.</p>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Risk Level</span>
<span class="text-sm font-medium">Very High</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-red-500 h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Avg. Return</span>
<span class="text-sm font-medium">Variable</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 100%"></div>
</div>
</div>
<button class="w-full py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition">Explore</button>
</div>
</div>
<!-- ETFs Investment -->
<div class="bg-white rounded-xl shadow-md overflow-hidden investment-card">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-orange-100 p-3 rounded-full mr-4">
<i class="fas fa-boxes text-orange-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">ETFs</h3>
</div>
<p class="text-gray-600 mb-6">Diversified funds that track indexes, sectors, or commodities.</p>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Risk Level</span>
<span class="text-sm font-medium">Medium</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-yellow-500 h-2 rounded-full" style="width: 60%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span class="text-sm text-gray-500">Avg. Return</span>
<span class="text-sm font-medium">6-10%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 70%"></div>
</div>
</div>
<button class="w-full py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition">Explore</button>
</div>
</div>
</div>
</div>
</section>
<!-- Learning Center -->
<section id="learn" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Investment Learning Center</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Expand your financial knowledge with our comprehensive educational resources.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Article 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover">
<img src="https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Investing Basics" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center mb-2">
<span class="text-xs font-semibold text-blue-600 bg-blue-100 px-2 py-1 rounded">BEGINNER</span>
<span class="text-xs text-gray-500 ml-2">5 min read</span>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Investing 101: The Basics You Need to Know</h3>
<p class="text-gray-600 mb-4">Learn the fundamental concepts of investing and how to get started on your financial journey.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Read More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Article 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover">
<img src="https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1011&q=80" alt="Diversification" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center mb-2">
<span class="text-xs font-semibold text-green-600 bg-green-100 px-2 py-1 rounded">INTERMEDIATE</span>
<span class="text-xs text-gray-500 ml-2">8 min read</span>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">The Power of Diversification in Your Portfolio</h3>
<p class="text-gray-600 mb-4">Discover why spreading your investments across different assets can reduce risk and improve returns.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Read More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Article 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden card-hover">
<img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1115&q=80" alt="Retirement Planning" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center mb-2">
<span class="text-xs font-semibold text-purple-600 bg-purple-100 px-2 py-1 rounded">ADVANCED</span>
<span class="text-xs text-gray-500 ml-2">12 min read</span>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Retirement Planning: Strategies for Every Age</h3>
<p class="text-gray-600 mb-4">Explore age-appropriate strategies to build a retirement nest egg that will last.</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Read More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-10">
<button class="px-6 py-3 border border-blue-600 text-blue-600 rounded-md font-semibold hover:bg-blue-50 transition">
View All Resources
</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">What Our Investors Say</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Hear from people who have grown their wealth with WealthGrow.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"WealthGrow has completely transformed how I manage my investments. The platform is intuitive and the educational resources are top-notch."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-800">Sarah Johnson</h4>
<p class="text-sm text-gray-500">Marketing Director</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"As someone new to investing, I was nervous at first. But WealthGrow's guidance helped me build a diversified portfolio I'm confident in."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-800">Michael Chen</h4>
<p class="text-sm text-gray-500">Software Engineer</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"The automated portfolio rebalancing saves me so much time. I've seen consistent growth since switching to WealthGrow."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-800">Emily Rodriguez</h4>
<p class="text-sm text-gray-500">Small Business Owner</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-gray-800 mb-6">About WealthGrow</h2>
<p class="text-gray-600 mb-6">Founded in 2015, WealthGrow was created with a simple mission: to make investing accessible to everyone, regardless of their financial knowledge or net worth.</p>
<p class="text-gray-600 mb-6">Our team of financial experts and technologists have built a platform that combines cutting-edge technology with proven investment strategies to help you achieve your financial goals.</p>
<div class="grid grid-cols-2 gap-4 mb-6">
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span class="text-gray-700">SEC Registered</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span class="text-gray-700">FDIC Insured</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span class="text-gray-700">24/7 Support</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span class="text-gray-700">No Hidden Fees</span>
</div>
</div>
<button class="px-6 py-3 bg-blue-600 text-white rounded-md font-semibold hover:bg-blue-700 transition">
Learn More About Us
</button>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-xl p-2">
<img src="https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80" alt="Our Team" class="rounded-lg w-full">
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 gradient-bg text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Your Investment Journey?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join thousands of investors who are already growing their wealth with WealthGrow.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-3 bg-white text-blue-600 rounded-md font-semibold hover:bg-gray-100 transition">Open an Account</button>
<button class="px-8 py-3 border border-white text-white rounded-md font-semibold hover:bg-white hover:bg-opacity-10 transition">Schedule a Call</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Contact Us</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Have questions? Our team is here to help you with your investment needs.</p>
</div>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<div class="bg-gray-50 p-8 rounded-xl">
<h3 class="text-xl font-semibold text-gray-800 mb-6">Get in Touch</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-800">Our Location</h4>
<p class="text-gray-600">123 Financial District, Suite 456<br>New York, NY 10005</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-800">Phone Number</h4>
<p class="text-gray-600">+1 (555) 123-4567<br>Mon-Fri, 9am-6pm EST</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-800">Email Address</h4>
<p class="text-gray-600">support@wealthgrow.com<br>We typically reply within 24 hours</p>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-xl">
<h3 class="text-xl font-semibold text-gray-800 mb-6">Send Us a Message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 mb-2">Your Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full py-3 bg-blue-600 text-white rounded-md font-semibold hover:bg-blue-700 transition">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Frequently Asked Questions</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Find answers to common questions about investing with WealthGrow.</p>
</div>
<div class="max-w-3xl mx-auto">
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
<h3 class="text-lg font-semibold text-gray-800">How do I get started with WealthGrow?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform transform"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">Getting started is easy! Simply click on the "Get Started" button at the top of the page, fill out our quick registration form, and you'll be guided through the process of setting up your account. The whole process takes less than 10 minutes.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
<h3 class="text-lg font-semibold text-gray-800">What is the minimum investment amount?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform transform"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">We believe investing should be accessible to everyone. You can start with as little as $100 for our automated investment portfolios. For self-directed investing, there's no minimum after your initial account funding.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
<h3 class="text-lg font-semibold text-gray-800">How are your fees structured?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform transform"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">We charge a simple, transparent fee of 0.25% annually on assets under management for our automated portfolios. There are no hidden fees, trading commissions, or account minimums. For self-directed accounts, we charge $0 commission for stock and ETF trades.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
<h3 class="text-lg font-semibold text-gray-800">Is my money safe with WealthGrow?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform transform"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">Yes, your money is safe. WealthGrow is a SEC-registered investment advisor. Client securities are held with our custodian partner, which is a member of SIPC, protecting securities for up to $500,000 (including $250,000 for claims for cash).</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
<h3 class="text-lg font-semibold text-gray-800">Can I withdraw my money at any time?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform transform"></i>
</button>
<div class="px-6 pb-6 hidden">
<p class="text-gray-600">Absolutely. There are no lock-up periods with WealthGrow. You can withdraw your funds at any time. Standard settlement times apply (typically 2-3 business days for stocks and ETFs), and we'll process your withdrawal request promptly.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-chart-line text-blue-400 text-2xl"></i>
<span class="text-xl font-bold">WealthGrow</span>
</div>
<p class="text-gray-400 mb-4">Smart investing made simple for everyone.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Investing Basics</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Market Research</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Financial Tools</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Disclosures</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Regulatory Information</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-10 pt-6 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 WealthGrow. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Security</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Accessibility</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Sitemap</a>
</div>
</div>
</div>
</footer>
<!-- Chart.js for portfolio visualization -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
// Portfolio Chart
const portfolioCtx = document.getElementById('portfolioChart').getContext('2d');
const portfolioChart = new Chart(portfolioCtx, {
type: 'line',
data: {
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'],
datasets: [{
label: 'Portfolio Value',
data: [8500, 9200, 10100, 10500, 11200, 11800, 12458],
borderColor: 'rgba(255, 255, 255, 0.8)',
backgroundColor: 'rgba(255, 255, 255, 0.1)',
borderWidth: 2,
tension: 0.4,
fill: true,
pointBackgroundColor: 'white',
pointRadius: 0,
pointHoverRadius: 6
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: false
}
},
scales: {
x: {
grid: {
display: false,
drawBorder: false
},
ticks: {
color: 'rgba(255, 255, 255, 0.7)'
}
},
y: {
grid: {
color: 'rgba(255, 255, 255, 0.1)',
drawBorder: false
},
ticks: {
color: 'rgba(255, 255, 255, 0.7)',
callback: function(value) {
return '$' + value.toLocaleString();
}
}
}
}
}
});
// FAQ Accordion
document.querySelectorAll('.bg-white button').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
});
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Jeffking11/investment" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>