diff --git a/frontend/src/app/blog/page.tsx b/frontend/src/app/blog/page.tsx
index cc470b9..a6224e6 100644
--- a/frontend/src/app/blog/page.tsx
+++ b/frontend/src/app/blog/page.tsx
@@ -1,5 +1,6 @@
import { promises as fs } from "fs";
import Link from "next/link";
+import Socials from "@/components/Socials";
async function getFolders(dirPath: string) {
try {
@@ -97,6 +98,10 @@ export default async function BlogList() {
))}
+
+
diff --git a/frontend/src/components/Socials.tsx b/frontend/src/components/Socials.tsx
new file mode 100644
index 0000000..83b6afc
--- /dev/null
+++ b/frontend/src/components/Socials.tsx
@@ -0,0 +1,53 @@
+import {
+ Tooltip,
+ TooltipContent,
+ TooltipTrigger,
+} from "@/components/ui/tooltip";
+
+import { Icon } from "@iconify/react";
+import Link from "next/link";
+
+export default async function Portfolio() {
+ const socials = [
+ {
+ icon: "pajamas:mail",
+ link: "mailto:shenoy.ameya@gmail.com",
+ hoverText: "Shoot me an email!",
+ },
+
+ {
+ icon: "pajamas:linkedin",
+ link: "https://linkedin.com/in/codingcoffee",
+ hoverText: "Let's connect on LinkedIn",
+ },
+
+ {
+ icon: "pajamas:github",
+ link: "https://github.com/codingcoffee",
+ hoverText: "Checkout my opensource repos at GitHub",
+ },
+
+ {
+ icon: "pajamas:twitter",
+ link: "https://x.com/codingcoffeeX",
+ hoverText: "Follow me on X!",
+ },
+ ];
+
+ return (
+
+ {socials.map((social, _) => (
+
+
+
+
+
+
+
+ {social.hoverText}
+
+
+ ))}
+
+ );
+}