diff --git a/src/landppt/web/templates/scenarios.html b/src/landppt/web/templates/scenarios.html new file mode 100644 index 0000000..27b9195 --- /dev/null +++ b/src/landppt/web/templates/scenarios.html @@ -0,0 +1,385 @@ +{% extends "base.html" %} + +{% block title %}场景选择 - LandPPT{% endblock %} + +{% block extra_css %} + +{% endblock %} + +{% block content %} +
+

🎨 选择 PPT 场景

+

选择最适合您需求的场景模板,AI 将根据场景特点生成专业的 PPT

+
+ +
+ {% for scenario in scenarios %} +
+
+
{{ scenario.icon }}
+

{{ scenario.name }}

+

{{ scenario.description }}

+ +
+
+ {% endfor %} +
+ + + + + +{% endblock %} + +{% block extra_js %} + +{% endblock %}