diff --git a/content/en/benchmark.md b/content/en/benchmark.md
new file mode 100644
index 0000000000..3c87b11781
--- /dev/null
+++ b/content/en/benchmark.md
@@ -0,0 +1,333 @@
+---
+title: NumPy Benchmarks
+sidebar: false
+---
+
+
+
+## Overview
+
+This web page aims to benchmark NumPy's performance on the widely accepted N-body problem
+[2]. This work also compares NumPy with Python & C++
+and with compilers like Numba and Pythran.
+
+The objective of benchmarking NumPy revolves around the efficiency of the library in quasi real-life situations,
+and the N-body problem suits the purpose well.
+Benchmarking is performed over several iterations for different datasets to ensure the accuracy of the results.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## About N-Body Problem
+
+
+
+
+
+> In physics, the n-body problem is the problem of predicting the individual motions of a group of celestial objects interacting with each other gravitationally.
+
+
Algorithm & Source Code | +Implementation Details | +
NumPy | +Vectorized Approach, Broadcasting Method, NumPy Arrays | +
Python | +Standard Python Approach, Using List | +
C++ | +C++ Implementation, GNU C++ Compiler | +
Numba | +Just-In-time Compilation, Non-Vectorized Approach, Using Numba at the Backend via Transonic, NumPy Arrays | +
Pythran | +Just-In-Time Compilation, Non-Vectorized Approach, Pythran at the Backend via Transonic, NumPy Arrays | +
Input(s) $\rightarrow$ | +32 | +64 | +128 | +256 | +
NumPy | +0.434 | +0.243 | +0.139 | +0.0713 | +
Python | +0.838 | +0.783 | +0.82 | +0.697 | +
C++ | +0.1001 | +0.089 | +0.089 | +0.075 | +
Numba | +0.1007 | +0.101 | +0.106 | +0.104 | +
Pythran | +0.02 | +0.02 | +0.019 | +0.0203 | +