{% extends "base.html" %} {% block title %}Home - PacificPy App{% endblock %} {% block content %}

Welcome to PacificPy!

This is a simple example application built with PacificPy.


PacificPy is a modern, async-first web framework for Python with a focus on developer experience and security.

{% if user %}
User Information

You are currently logged in as {{ user.username }}.

View Profile
{% else %}
Get Started

Log in to access your account and explore the features.

Login Register
{% endif %}
Documentation

Learn how to build amazing applications with PacificPy.

Read Docs
Examples

Explore example applications to see PacificPy in action.

View Examples
Community

Join our community to get help and share your experiences.

Join Community
{% endblock %}