diff --git a/core/static/core/images/CodingUnitedLogoNew.png b/core/static/core/images/CodingUnitedLogoNew.png new file mode 100644 index 0000000..3c2c750 Binary files /dev/null and b/core/static/core/images/CodingUnitedLogoNew.png differ diff --git a/core/templates/base.html b/core/templates/base.html index d58bb25..98d7ceb 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -8,7 +8,7 @@ {% tailwind_css %} - + {% block title %} {% endblock %} @@ -30,7 +30,7 @@ Coding United Logo @@ -48,6 +48,8 @@

Contact Us | Meetings + | + FAQ {%block content%}{%endblock%} @@ -61,6 +63,7 @@

Coding United Commons

About US Contact US Meetings + FAQ diff --git a/core/templates/core/faq.html b/core/templates/core/faq.html new file mode 100644 index 0000000..1057a4a --- /dev/null +++ b/core/templates/core/faq.html @@ -0,0 +1,113 @@ +{%extends "base.html"%} +{% load static tailwind_tags %} + +{%block title%} + FAQ +{%endblock%} + +{%block content%} +
+
+ Do I Need Prior Coding Experience to Join? +
+

No. You do not need to be an expert. However, this club is not a beginner tutorial series. You should be willing to learn by building, asking questions + and taking ownership of small tasks. Members at all levels participate, but everyone contributes to real projects.

+
+
+
+
+
+ Is this a Learning Club or a Project Club? +
+

It is a project-first club. Learning happens through active development, not passive coursework. Tutorials, lectures, and crash courses exist only + to support ongoing project work.

+
+
+
+
+
+ What Kind of Projects Does the Club Work On? +
+

We focus on real, end-to-end systems, including:

+
    +
  • Games (Using engines like Godot)
  • +
  • Embedded and IoT Builds (Such as the Roku Remote Project)
  • +
  • Deterministic AI Systems (Logic- and Decision-Based, Not Hype-Driven)
  • +
  • Full-Stack Web Applications and Deployments (Using Django, Flask, React, TailwindCss)
  • +
  • Infrastructure and Homelab Projects (Optional)
  • +
+

Projects are selected base on workforce relevance, not trends.

+
+
+
+
+
+ Do You Use AI Tools in the Club? +
+

Yes. AI tools are part of modern software work, and we treat them as such.

+

Members are expected to use AI intentionally and responsibly, and to understand and explain the systems they build. + AI is a productivity tool, not a substitute for reasoning or fundamentals.

+
+
+
+
+
+ How is Progress Measured? +
+

Progress is measured by:

+
    +
  • Working Demos
  • +
  • Clear Explanations of System Designs
  • +
  • Documented Decisions and Tradeoffs
  • +
  • Team Contributions and Reliability
  • +
+

Certificates, course completion, or tool lists alone are not considered progress.

+
+
+
+
+
+ How Much Time Commitment is Expected? +
+

Time commitment varies by project, but consistency matters more than hours.

+

Members are expected to participate regularly, communicate claearly, and contribute meaningfully to their teams.

+
+
+
+
+
+ Are There Lectures or Classes? +
+

Yes, but they are supporting tools, not the main activity.

+

We host monthly lectures and crash courses, especially during breaks, and each one is tied directly to improving active projects.

+
+
+
+
+
+ Is This Club Only for People Pursuing Software Engineering Jobs? +
+

No, but the club is designed around real industry expectations.

+

Members interested in game development, embedded systems, infrastructure, automation, or applied AI will all find relevant work here.

+
+
+
+
+
+ What Makes Coding United Different from Other Coding Clubs? +
+

We operate like a small engineering studio, not a classroom.

+

Our focus is on delivery, ownership, AI-augmented workflows, and real proof of work-because that is what the modern tech industry expects.

+
+
+
+
+
+ How Do I Get Started? +
+

Join a project, introduce yourself, and start contributing.

+

You'll learn fastest by building, asking questions, and shipping small pieces consistently.

+
+
+
+{%endblock%} \ No newline at end of file diff --git a/core/urls.py b/core/urls.py index 3fc19e7..b83c5dd 100644 --- a/core/urls.py +++ b/core/urls.py @@ -1,6 +1,6 @@ from django.urls import path -from .views import home, about, errorPage, contact, session +from .views import home, about, errorPage, contact, session, faq urlpatterns = [ @@ -9,6 +9,8 @@ path('contact/', contact, name='contact'), path('session/', session, name='session'), + path('faq/', faq, name='faq'), + ] diff --git a/core/views.py b/core/views.py index 73deb15..4bf9a1b 100644 --- a/core/views.py +++ b/core/views.py @@ -15,6 +15,10 @@ def about(request): def session(request): return render(request, 'core/session.html') +def faq(request): + return render(request, 'core/faq.html') + + def contact(request): if request.method == "POST": fname = request.POST.get('fname')