diff --git a/config.yaml b/config.yaml
index 6e60dc39..b7f15396 100644
--- a/config.yaml
+++ b/config.yaml
@@ -24,11 +24,9 @@ params:
   social:
     twitter: "https://twitter.com/LixProject"
 
-  location:
-    - ""
-
   contact:
-    - "info@lix.systems"
+    - "General Inquiries: info@lix.systems"
+    - "Security Reports: security@lix.systems"
 
   copyright: "Content licenced under CC-BY-SA-4.0 or LGPL-2.0-or-later."
 
@@ -50,6 +48,10 @@ menus:
         #  url: "/#"
         #  weight: 4
 
+    - name: "Resources"
+      url: "/resources"
+      weight: 4
+
     - name: "Community"
       url: "/community"
       weight: 5
@@ -64,30 +66,40 @@ menus:
       weight: 5
       pre: "btn btn-primary text-light"
 
-  footer:
+  aboutus:
+    - name: "Why Lix?"
+      url: "/about#why-lix"
+      weight: 1
+
     - name: "About Lix"
       url: "/about"
       weight: 2
 
-    - name: "Source Repositories"
-      url: "https://git.lix.systems"
     - name: "The Lix Team"
       url: "/team"
-      weight: 3
-
-      weight: 3
-
-    - name: "Documentation"
-      url: "/#"
       weight: 4
 
-    - name: "Community"
-      url: "/community"
+    - name: "FAQs"
+      url: "/about#frequently-asked-questions-relatively-speaking"
       weight: 5
 
+  resources:
+
     - name: "Wiki"
       url: "https://wiki.lix.systems"
-      weight: 6
+      weight: 1
+
+    - name: "Community"
+      url: "/community"
+      weight: 2
+
+    - name: "Nix Resources"
+      url: "/resources"
+      weight: 2
+
+    - name: "Source Repositories"
+      url: "https://git.lix.systems"
+      weight: 4
 
 
 taxonomies:
diff --git a/themes/lix/layouts/partials/shared/footer.html b/themes/lix/layouts/partials/shared/footer.html
index d675f503..27142606 100644
--- a/themes/lix/layouts/partials/shared/footer.html
+++ b/themes/lix/layouts/partials/shared/footer.html
@@ -16,7 +16,7 @@
       <div class="col-12 col-xl-2 text-center text-xl-start pb-4">
         <h5 class="fs-6 fw-semibold text-primary">About us</h5>
         <ul class="list-unstyled">
-          {{ range .Site.Menus.footer }}
+          {{ range .Site.Menus.aboutus }}
             <li class="">
               <a class="small text-black-61 text-decoration-none" href="{{ .URL }}">{{ .Name }}</a>
             </li>
@@ -24,18 +24,17 @@
         </ul>
       </div>
       <div class="col-12 col-xl-3 text-center text-xl-start pb-4">
-        <h5 class="fs-6 fw-semibold text-primary">Location</h5>
+        <h5 class="fs-6 fw-semibold text-primary">Resources</h5>
         <ul class="list-unstyled">
-          {{ range .Site.Params.location }}
-            <li class="d-flex justify-content-center justify-content-xl-start mb-2">
-              <div class="d-flex align-items-center text-primary">{{ partial "icons/geo-alt.html" }}</div>
-              <p class="small text-black-61 m-0 ps-2">{{ . }}</p>
+          {{ range .Site.Menus.resources }}
+            <li class="">
+              <a class="small text-black-61 text-decoration-none" href="{{ .URL }}">{{ .Name }}</a>
             </li>
           {{ end }}
         </ul>
       </div>
       <div class="col-12 col-xl-3 text-center text-xl-start pb-4">
-        <h5 class="fs-6 fw-semibold text-primary">Contact us</h5>
+        <h5 class="fs-6 fw-semibold text-primary">Points of Contact</h5>
         {{ range .Site.Params.contact }}
           <p class="small text-black-61 mb-1">{{ . }}</p>
         {{ end }}