import gradio as gr
import chapter1_textgen
import chapter2_prompt_improver
import chapter3_summarizer
def main():
with gr.Blocks(title="PPV – HuggingFace Guide") as demo:
# -------------------------------
# HOMEPAGE BANNER
# -------------------------------
gr.Markdown(
"""
PPV – Beginner AI Apps Guide
Learn. Build. Publish. The simplest path to AI app creation.
"""
)
# -------------------------------
# TABS FOR CHAPTERS
# -------------------------------
with gr.Tabs():
with gr.Tab("Chapter 1 – Text Generator"):
chapter1_textgen.app()
with gr.Tab("Chapter 2 – Prompt Improver"):
chapter2_prompt_improver.app()
with gr.Tab("Chapter 3 – Summarizer"):
chapter3_summarizer.app()
# -------------------------------
# PPV BRAND FOOTER
# -------------------------------
gr.Markdown(
"""
Created by
PPV
Empowering beginners to build real AI apps with clarity and confidence.
"""
)
return demo
demo = main()
demo.launch()