www: Drop about page

- no-op

Change-Id: I02ca23aa64ed3d569b44101574198f952425791d
diff --git a/components/navbar.html.twig b/components/navbar.html.twig
index 2e3f7f0..c101084 100644
--- a/components/navbar.html.twig
+++ b/components/navbar.html.twig
@@ -18,9 +18,6 @@
   <ul>
     <li class="nav-logo"></li>
     <li>
-      <a href="{{ path('leaf_about') }}" class="nav-link {{ route == 'leaf_about' ? 'active' : '' }}">About</a>
-    </li>
-    <li>
       <a href="{{ path('leaf_gallery') }}" class="nav-link {{ route == 'leaf_gallery' ? 'active' : '' }}">Screenshots</a>
     </li>
     <li>
diff --git a/src/Controller/AboutController.php b/src/Controller/AboutController.php
deleted file mode 100644
index 0327837..0000000
--- a/src/Controller/AboutController.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-namespace App\Controller;
-
-use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
-use Symfony\Component\HttpFoundation\Response;
-use Symfony\Component\Routing\Annotation\Route;
-
-class AboutController extends AbstractController
-{
-    #[Route('/about', name: 'leaf_about')]
-    public function index(): Response
-    {
-        return $this->render('about/index.html.twig');
-    }
-}
diff --git a/templates/about/index.html.twig b/templates/about/index.html.twig
deleted file mode 100644
index 134ee77..0000000
--- a/templates/about/index.html.twig
+++ /dev/null
@@ -1,15 +0,0 @@
-{% extends 'base.html.twig' %}
-
-{% block title %}
-  About LeafOS
-{% endblock %}
-
-{% block body %}
-  <article>
-    <div class="banner">
-      <div class="container">
-        <h1>About</h1>
-      </div>
-    </div>
-  </article>
-{% endblock %}