26 lines
768 B
HTML
26 lines
768 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}首页{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="hero">
|
|
<h1>欢迎使用提示词大师</h1>
|
|
<p>智能生成高质量提示词,提升您的工作效率</p>
|
|
<a href="{{ url_for('main.generate_prompt') }}" class="cta-button">开始生成</a>
|
|
</section>
|
|
|
|
<section class="features">
|
|
<div class="feature">
|
|
<h2>智能生成</h2>
|
|
<p>基于先进的大模型技术,快速生成精准提示词</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h2>用户友好</h2>
|
|
<p>简洁直观的界面设计,轻松上手</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h2>持续优化</h2>
|
|
<p>通过用户反馈不断改进提示词质量</p>
|
|
</div>
|
|
</section>
|
|
{% endblock %} |