diff --git a/_data/team.yml b/_data/team.yml
index 2499668..3bcf8e9 100644
--- a/_data/team.yml
+++ b/_data/team.yml
@@ -63,3 +63,12 @@ members:
         external_url: https://github.com/ppacher
     description: >
       With his wide experience, ranging from IT-security and pen-testing to driver development to server management, Patrick rapidly became an invaluable part of the team. With his passion for Go-lang he is primarily advancing the SPN.
+externals:
+  - name: Pranav
+    title: Freelancer
+    joined: August 2021
+    handles:
+      - icon: twitter
+        external_url: https://twitter.com/tweetsbypranav
+    description: >
+      Pranav is a minimalist who enjoys writing about privacy, web development and philosophy. He joined forces with Safing to tackle the "Portmaster vs X" comparison blog posts, where he is the main contributor.
diff --git a/assets/img/profiles/pranav.png b/assets/img/profiles/pranav.png
new file mode 100644
index 0000000..3727d1a
Binary files /dev/null and b/assets/img/profiles/pranav.png differ
diff --git a/team/index.html b/team/index.html
index f6f2ada..cd6bb3c 100644
--- a/team/index.html
+++ b/team/index.html
@@ -30,9 +30,9 @@ layout: page
                       </span>
                       <div class="flex mx-auto justify-center pt-5">
                         {% for handle in member.handles %}
-                          <a href="{{ handle.external_url }}" target="_blank" class="opacity-55 hover:opacity-100 ease-in-out duration-150 mr-4">
-                            <img style="height: 1.1rem; width: auto;" src="{{ site.img_url }}icons/{{ handle.icon }}.svg" />
-                          </a>
+                        <a href="{{ handle.external_url }}" target="_blank" class="opacity-55 hover:opacity-100 ease-in-out duration-150 mr-4">
+                          <img style="height: 1.1rem; width: auto;" src="{{ site.img_url }}icons/{{ handle.icon }}.svg" />
+                        </a>
                         {% endfor %}
                       </div>
                     </div>
@@ -48,6 +48,39 @@ layout: page
                 </li>
 
                 {% endfor %}
+
+                <li class="mb-40 lg:mb-24 bg-black opacity-25" style="height: 2px;"></li>
+
+                {% for external in site.data.team.externals %}
+                <li class="pb-40 lg:pb-24" id="{{ external.name | slugify }}">
+                  <div class="text-center lg:text-left lg:flex items-center">
+                    <div class="pb-8 lg:-mb-10">
+                      <img class="mx-auto" src="{{ site.img_url }}profiles/{{ external.name | slugify }}.png" alt="{{ external.name }}">
+                      <span style="font-size: 12rem; font-weight: 800; margin-top: -9.5rem; margin-left: 6rem; z-index: -1;" class="hidden lg:block absolute transform scale-50 lg:scale-125">
+                        <img src="{{ site.img_url }}shapes/square.png" alt="">
+                      </span>
+                      <span style="font-size: 12rem; font-weight: 800; margin-top: -9.8rem; margin-left: 2.5rem; z-index: -1;" class="lg:hidden absolute transform scale-70 lg:scale-125">
+                        <img src="{{ site.img_url }}shapes/square.png" alt="">
+                      </span>
+                      <div class="flex mx-auto justify-center pt-5">
+                        {% for handle in external.handles %}
+                        <a href="{{ handle.external_url }}" target="_blank" class="opacity-55 hover:opacity-100 ease-in-out duration-150 mr-4">
+                          <img style="height: 1.1rem; width: auto;" src="{{ site.img_url }}icons/{{ handle.icon }}.svg" />
+                        </a>
+                        {% endfor %}
+                      </div>
+                    </div>
+                    <div class="lg:pl-16">
+                      <span style="color: #6188ff;" class="uppercase text-sm">{{ external.title }}</span>
+                      <p class="pt-1 pb-3 font-extrabold text-2xl">{{ external.name }}</p>
+                      <span class="opacity-55">Joined {{ external.joined }}</span>
+                      <p class="pt-3 text-md opacity-55 max-w-2xl">
+                        {{ external.description }}
+                      </p>
+                    </div>
+                  </div>
+                </li>
+                {% endfor %}
               </ul>
             </div>
           </div>