diff --git a/app/page.tsx b/app/page.tsx
index c3b58e0..59c1cbd 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -3,6 +3,7 @@ import Contact from "@/components/contact";
import Hero from "@/components/hero";
import Navbar from "@/components/navbar";
import Projects from "@/components/projects";
+import Resume from "@/components/resume";
const Home: React.FC = () => {
return (
@@ -16,6 +17,8 @@ const Home: React.FC = () => {
{/* Contacts Section */}
{/* */}
+ {/* Resume Section */}
+
);
};
diff --git a/components/navbar.tsx b/components/navbar.tsx
index 7b98fa2..2df739e 100644
--- a/components/navbar.tsx
+++ b/components/navbar.tsx
@@ -1,4 +1,5 @@
import Link from "next/link";
+import Resume from "./resume";
const Navbar: React.FC = () => {
return (
@@ -33,6 +34,13 @@ const Navbar: React.FC = () => {
{/* > */}
{/* Contact */}
{/* */}
+ {/* Resume */}
+
+ Resume
+
diff --git a/components/resume.tsx b/components/resume.tsx
new file mode 100644
index 0000000..e62a3a6
--- /dev/null
+++ b/components/resume.tsx
@@ -0,0 +1,35 @@
+"use client";
+
+import Background from "./background";
+
+const Resume: React.FC = () => {
+ return (
+
+
+ Resume
+
+
+
+ );
+};
+
+export default Resume;
diff --git a/public/Resume.pdf b/public/Resume.pdf
new file mode 100755
index 0000000..979428b
Binary files /dev/null and b/public/Resume.pdf differ