Yahya64yrf's picture
‎Megg Coder
879eb87 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MeggDev Studio - AI-Powered Development</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.min.js"></script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 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);
}
#vanta-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
opacity: 0.3;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<div id="vanta-bg"></div>
<!-- Navigation -->
<nav class="relative z-10 bg-gray-900 bg-opacity-80 backdrop-filter backdrop-blur-lg border-b border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 via-pink-500 to-red-500">MeggDev</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-white bg-purple-600">Home</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Features</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Projects</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Pricing</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Contact</a>
</div>
</div>
</div>
<div class="hidden md:block">
<div class="ml-4 flex items-center md:ml-6">
<button class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
<i data-feather="search"></i>
</button>
<button class="ml-4 px-4 py-2 rounded-md text-sm font-medium text-white bg-gradient-to-r from-purple-500 to-pink-500 hover:from-purple-600 hover:to-pink-600">
Get Started
</button>
</div>
</div>
<div class="-mr-2 flex md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="relative z-10 gradient-bg">
<div class="max-w-7xl mx-auto py-24 px-4 sm:py-32 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl">
AI-Powered Development Studio
</h1>
<p class="mt-6 text-xl max-w-3xl mx-auto text-purple-100">
Transform your ideas into stunning, functional applications across all platforms with our cutting-edge AI developer.
</p>
<div class="mt-10 flex justify-center space-x-4">
<a href="#" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-700 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10">
Start Building
</a>
<a href="#" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
See Demo
</a>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="relative z-10 py-16 bg-gray-900 overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-white sm:text-4xl">
Unlimited Development Possibilities
</h2>
<p class="mt-3 max-w-2xl mx-auto text-xl text-gray-300 sm:mt-4">
From simple websites to complex AAA games - MeggDev handles it all
</p>
</div>
<div class="mt-20">
<div class="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-3">
<!-- Feature 1 -->
<div class="bg-gray-800 p-8 rounded-xl transition-all duration-300 card-hover">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
<i data-feather="code"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-white">Multi-Platform Development</h3>
<p class="mt-2 text-base text-gray-300">
Build for Windows, Mac, Linux, iOS, Android, and more with a single codebase.
</p>
</div>
</div>
<!-- Feature 2 -->
<div class="bg-gray-800 p-8 rounded-xl transition-all duration-300 card-hover">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-pink-500 text-white">
<i data-feather="cpu"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-white">AI-Powered Code Generation</h3>
<p class="mt-2 text-base text-gray-300">
Our Claude 4.1 Opus AI writes flawless, production-ready code in seconds.
</p>
</div>
</div>
<!-- Feature 3 -->
<div class="bg-gray-800 p-8 rounded-xl transition-all duration-300 card-hover">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i data-feather="database"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-white">Full Stack Solutions</h3>
<p class="mt-2 text-base text-gray-300">
Complete frontend, backend, database architecture - all automated.
</p>
</div>
</div>
<!-- Feature 4 -->
<div class="bg-gray-800 p-8 rounded-xl transition-all duration-300 card-hover">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-500 text-white">
<i data-feather="smartphone"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-white">App Development</h3>
<p class="mt-2 text-base text-gray-300">
Create editing software, 3D tools, music apps, stores, and more.
</p>
</div>
</div>
<!-- Feature 5 -->
<div class="bg-gray-800 p-8 rounded-xl transition-all duration-300 card-hover">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-500 text-white">
<i data-feather="gamepad"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-white">Game Development</h3>
<p class="mt-2 text-base text-gray-300">
From indie games to AAA titles, 2D to 3D, including classic remakes.
</p>
</div>
</div>
<!-- Feature 6 -->
<div class="bg-gray-800 p-8 rounded-xl transition-all duration-300 card-hover">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-500 text-white">
<i data-feather="figma"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-white">Figma to Code</h3>
<p class="mt-2 text-base text-gray-300">
Upload your Figma designs and get production-ready code instantly.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="relative z-10 bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
<span class="block">Ready to build something amazing?</span>
<span class="block bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-pink-500">Start your project today.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
<div class="inline-flex rounded-md shadow">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 hover:bg-purple-700">
Get Started
</a>
</div>
<div class="ml-3 inline-flex">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-purple-200 bg-purple-800 hover:bg-purple-700">
Learn more
</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="relative z-10 bg-gray-900">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
<div class="grid grid-cols-2 gap-8 md:grid-cols-4">
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Products</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">Web Apps</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Mobile Apps</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Games</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Software</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">Documentation</a>
<a href="#" class="text-base text-gray-300 hover:text-white">API Reference</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Tutorials</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Community</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">About</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Blog</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Careers</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Press</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Connect</h3>
<div class="mt-4 space-y-4">
<a href="#" class="text-base text-gray-300 hover:text-white">Twitter</a>
<a href="#" class="text-base text-gray-300 hover:text-white">GitHub</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Discord</a>
<a href="#" class="text-base text-gray-300 hover:text-white">Email</a>
</div>
</div>
</div>
<div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between">
<p class="text-base text-gray-400">
&copy; 2023 MeggDev Studio. All rights reserved.
</p>
<div class="mt-4 md:mt-0 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="youtube"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x7b46f5,
backgroundColor: 0x111827,
size: 0.8
});
// Initialize feather icons
feather.replace();
// Simple animation for cards on scroll
document.addEventListener('DOMContentLoaded', function() {
anime.timeline({
targets: '.card-hover',
easing: 'easeOutExpo',
delay: anime.stagger(100)
})
.add({
translateY: [50, 0],
opacity: [0, 1],
duration: 800
});
// Smooth scroll for anchors
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});
</script>
</body>
</html>