first add files
This commit is contained in:
33
index.html
Normal file
33
index.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}首页{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h2>{{ company.slogan }}</h2>
|
||||
<p>领先的数字技术解决方案提供商</p>
|
||||
<a href="{{ url_for('services') }}" class="btn">了解我们的服务</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="features">
|
||||
<div class="container">
|
||||
<h2>我们的优势</h2>
|
||||
<div class="feature-grid">
|
||||
<div class="feature">
|
||||
<h3>创新技术</h3>
|
||||
<p>采用最前沿的人工智能和大数据技术,为客户提供卓越的解决方案。</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h3>专业团队</h3>
|
||||
<p>由经验丰富的技术专家和行业顾问组成的团队,确保项目高质量交付。</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h3>客户至上</h3>
|
||||
<p>我们始终将客户需求放在首位,提供个性化的服务和解决方案。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user