diff --git a/_data/contributors.yml b/_data/contributors.yml
index a3393c86..a572964f 100644
--- a/_data/contributors.yml
+++ b/_data/contributors.yml
@@ -290,6 +290,26 @@
       proposal: /assets/docs/Thomas_Fransham_GSoC24_Proposal.pdf
       mentors: Vassil Vassilev, Saleem Abdulrasool
 
+- name: Mihail Mihov
+  photo: mihail-mihov.jpg
+  info: "GSoC 2024 Contributor"
+  email: mihovmihailp@gmail.com
+  github: "https://github.com/mihailmihov"
+  active: 1
+  projects:
+    - title: "Add support for consteval and constexpr functions in clad"
+      status: Ongoing
+      description: |
+        In mathematics and computer algebra, automatic differentiation (AD) is a set of techniques to numerically evaluate the derivative of a function specified by a computer program. Automatic differentiation is an alternative technique to Symbolic differentiation and Numerical differentiation (the method of finite differences). Clad is based on Clang which provides the necessary facilities for code transformation. The AD library can differentiate non-trivial functions, to find a partial derivative for trivial cases and has good unit test coverage.
+
+        C++ provides the specifiers consteval and constexpr to allow compile time evaluation of functions. constexpr declares a possibility, i.e the function will be evaluated at compile time if possible, else at runtime; whereas consteval makes it mandatory, i.e every call to the function must produce a compile-time constant.
+
+        The aim of this project is to ensure that same semantics are followed by the generated derivative function, i.e if the primal function is evaluated at compile time (because of constexpr or consteval specifier), then the generated derivative code should also have the same specifier to be evaluatable at compile time.
+
+        This will enable clad to demonstrate the benefits of doing automatic differentiation directly on C++ frontend to utilize the benefits of clang’s infrastructure.
+      proposal: /assets/docs/Mihail_Mihov_GSoC24_Proposal.pdf
+      mentors: Vaibhav Thakkar, Petro Zaritskyi, Vassil Vassilev
+
 - name: "This could be you!"
   photo: rock.jpg
   info: See <a href="/vacancies">openings</a> for more info
diff --git a/_pages/team/mihail-mihov.md b/_pages/team/mihail-mihov.md
new file mode 100644
index 00000000..87179657
--- /dev/null
+++ b/_pages/team/mihail-mihov.md
@@ -0,0 +1,10 @@
+---
+title: "Compiler Research - Team - Mihail Mihov"
+layout: gridlay
+excerpt: "Compiler Research: Team members"
+sitemap: false
+permalink: /team/MihailMihov
+email: mihovmihailp@gmail.com
+---
+
+{% include team-profile.html %}
diff --git a/assets/docs/Mihail_Mihov_GSoC24_Proposal.pdf b/assets/docs/Mihail_Mihov_GSoC24_Proposal.pdf
new file mode 100644
index 00000000..a13df318
Binary files /dev/null and b/assets/docs/Mihail_Mihov_GSoC24_Proposal.pdf differ
diff --git a/images/team/mihail-mihov.jpg b/images/team/mihail-mihov.jpg
new file mode 100644
index 00000000..0fdaa60d
Binary files /dev/null and b/images/team/mihail-mihov.jpg differ