{% extends "base.html" %} {% block title %}About - Declarative Routes Demo{% endblock %} {% block content %}

About Serv Framework

Learn about the modern Python web framework that makes building web applications simple, fast, and enjoyable.

What is Serv?

Serv is a modern Python web framework designed for developers who want to build web applications quickly and efficiently. It combines the simplicity of Flask with the power of modern async programming.

With its declarative routing system, you can define your application's routes using simple YAML configuration files, making your code more maintainable and easier to understand.

Key Features

About This Demo

This demonstration showcases the declarative routing capabilities of Serv. All routes in this application are defined using a simple YAML configuration file, demonstrating how easy it is to structure and maintain your web application's routing logic.

Configuration Example

routers:
  - name: main_router
    routes:
      - path: /
        handler: demo_app:HomeRoute
      - path: /dashboard
        handler: demo_app:DashboardRoute
      - path: /about
        handler: demo_app:AboutRoute

Ready to Get Started?

Explore the dashboard to see more interactive features, or visit our documentation to learn how to build your own Serv application.

View Dashboard Back to Home
{% endblock %}