# fullstack_generator.py def generate_website(description: str) -> str: """توليد صفحة HTML/CSS/JS بسيطة بناءً على الوصف""" html_template = f""" {description[:50]}

✨ {description}

تم إنشاء هذه الصفحة بواسطة "أحمد" - مساعدك الذكي.

""" return html_template