Spaces:
Sleeping
Sleeping
| # 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 |