35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Build websites fast{% endblock %}
|
|
{% block content %}
|
|
<section class="hero card">
|
|
<h1>Generate client websites in minutes</h1>
|
|
<p>
|
|
Build static demo sites and full Django ecommerce demos from one dashboard.
|
|
Bring your own business details and let local Ollama produce polished copy.
|
|
</p>
|
|
<div class="row gap">
|
|
{% if user.is_authenticated %}
|
|
<a class="button" href="/dashboard/">Open dashboard</a>
|
|
{% else %}
|
|
<a class="button" href="/signup/">Create account</a>
|
|
<a class="button muted" href="/login/">Login</a>
|
|
{% endif %}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="grid">
|
|
<article class="card">
|
|
<h3>Two output flavors</h3>
|
|
<p>Static HTML package and Django demo storefront.</p>
|
|
</article>
|
|
<article class="card">
|
|
<h3>Template catalog</h3>
|
|
<p>Pick from your own design template folders.</p>
|
|
</article>
|
|
<article class="card">
|
|
<h3>Local AI integration</h3>
|
|
<p>Uses Ollama endpoint for on-device content generation.</p>
|
|
</article>
|
|
</section>
|
|
{% endblock %}
|