From 29af92e6295fe7243ae8187dfa35b094e637b31b Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 14 Jun 2026 22:16:06 +0530 Subject: [PATCH] update webapp --- docs/webapp.md | 8 ++++---- webapp/content.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/webapp.md b/docs/webapp.md index 13de502..3c7fc82 100644 --- a/docs/webapp.md +++ b/docs/webapp.md @@ -71,8 +71,8 @@ deploys it through GitHub Pages. Repository administrators must set the Pages publishing source to **GitHub Actions** once. The expected project URL is: - + -This project URL is derived from the GitHub owner `Kunaldargan` and repository -name `dsai-gate`. A root user Pages URL would require a separate repository -named `Kunaldargan.github.io`. +This project URL is derived from the GitHub organization `DS-AI-GATE` and +repository name `dsai-gate`. A root organization Pages URL would require a +separate repository named `DS-AI-GATE.github.io`. diff --git a/webapp/content.py b/webapp/content.py index d3a68d2..35cf4c8 100644 --- a/webapp/content.py +++ b/webapp/content.py @@ -7,8 +7,8 @@ from typing import Optional -REPOSITORY_URL = "https://github.com/Kunaldargan/dsai-gate" -PAGES_URL = "https://kunaldargan.github.io/dsai-gate/" +REPOSITORY_URL = "https://github.com/DS-AI-GATE/dsai-gate" +PAGES_URL = "https://ds-ai-gate.github.io/dsai-gate/" HEADING = re.compile(r"^(#{1,6})\s+(.*)$") LINK = re.compile(r"!?\[([^\]]*)\]\(([^)]+)\)")