diff --git a/src/theme/NotFound/Content/index.js b/src/theme/NotFound/Content/index.js
new file mode 100644
index 0000000..c560bad
--- /dev/null
+++ b/src/theme/NotFound/Content/index.js
@@ -0,0 +1,16 @@
+import React from 'react';
+import Content from '@theme-original/NotFound/Content';
+import styles from './styles.module.css';
+
+export default function ContentWrapper(props) {
+ return (
+ <>
+
+
+ >
+ );
+}
diff --git a/src/theme/NotFound/Content/styles.module.css b/src/theme/NotFound/Content/styles.module.css
new file mode 100644
index 0000000..ba4cb6e
--- /dev/null
+++ b/src/theme/NotFound/Content/styles.module.css
@@ -0,0 +1,15 @@
+.links {
+ width: 100%;
+ margin-top: -80px;
+ display: flex;
+ gap: 20px;
+ align-items: center;
+ justify-content: center;
+}
+
+.separator{
+ width: 5px;
+ height: 5px;
+ border-radius: 50%;
+ background-color: black;
+}