Initial commit

This commit is contained in:
2025-11-27 11:29:46 +00:00
commit 8be9d73db4
16 changed files with 392 additions and 0 deletions

15
src/data/app.py Normal file
View File

@@ -0,0 +1,15 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html", title="Accueil")
@app.route("/projects")
def projects():
return render_template("projects.html", title="Projets")
@app.route("/contact")
def contact():
return render_template("contact.html", title="Contact")