My-AI-Assistant / fullstack_generator.py
Ahmedoooooo's picture
Create fullstack_generator.py
e57b4b2 verified
Raw
History Blame Contribute Delete
1.28 kB
# fullstack_generator.py
def generate_website(description: str) -> str:
"""توليد صفحة HTML/CSS/JS بسيطة بناءً على الوصف"""
html_template = f"""<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{description[:50]}</title>
<style>
body {{ font-family: Arial, sans-serif; margin: 0; padding: 20px; background: #f5f5f5; text-align: center; }}
.container {{ max-width: 800px; margin: auto; background: white; padding: 20px; border-radius: 10px; }}
h1 {{ color: #2c3e50; }}
p {{ color: #34495e; }}
button {{ background: #3498db; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }}
button:hover {{ background: #2980b9; }}
</style>
</head>
<body>
<div class="container">
<h1>✨ {description}</h1>
<p>تم إنشاء هذه الصفحة بواسطة "أحمد" - مساعدك الذكي.</p>
<button onclick="alert('مرحباً بك في موقعك الجديد!')">اضغط هنا</button>
</div>
<script>
console.log("مرحباً من JavaScript!");
</script>
</body>
</html>"""
return html_template