diff --git a/src/app/page.tsx b/src/app/page.tsx
index b76dbad..dae3483 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,7 @@ import Hero from "../components/Hero";
import About from "../components/About";
import Skills from "../components/Skills";
import Contact from "../components/Contact";
+import Portfolio from "../components/Portfolio";
export default function Home() {
return (
@@ -9,6 +10,7 @@ export default function Home() {
+
);
diff --git a/src/components/Portfolio.tsx b/src/components/Portfolio.tsx
new file mode 100644
index 0000000..7442ad0
--- /dev/null
+++ b/src/components/Portfolio.tsx
@@ -0,0 +1,18 @@
+export default function Portfolio() {
+ return (
+
+ {/* Title */}
+
+
+ // 03. Projects
+
+
+ Portfolio.
+
+
+
+ );
+}