from flask import Flask, render_template

# app.py liegt in ~/kleiner/backend/
# templates/ liegt in ~/kleiner/backend/templates
# static/    (nicht benötigt für diese Version)
app = Flask(__name__, template_folder="templates", static_folder="static")


@app.route("/")
def index():
    # reine UI (Mockup), alle Daten sind Platzhalter
    return render_template("index.html")


# WSGI-Entry bleibt 'app' für cPanel
# Application startup file: backend/app.py
# Application entry point:  app

