from flask import Flask, render_template, request

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/gallery')
def gallery():
    return render_template('gallery.html')

@app.route('/privacy')
def privacy():
    return render_template('privacy.html')

@app.route('/terms')
def terms():
    return render_template('terms.html')

@app.route('/contact')
def contact():
    return render_template('contact.html')

@app.route('/checkout')
def checkout():
    template = request.args.get('template', '')
    name = request.args.get('name', '')
    industry = request.args.get('industry', '')
    plan = request.args.get('plan', '')
    return f'Checkout coming soon - Template: {name} Industry: {industry} Plan: {plan}'

if __name__ == '__main__':
    app.run()