feat: Add blog contact method to the contact component

This commit is contained in:
암냥 2026-01-08 21:42:02 +09:00
commit fb2595679b
No known key found for this signature in database
2 changed files with 7 additions and 4 deletions

View file

@ -10,8 +10,7 @@ import { useTheme } from "next-themes";
import { LinkIcon, TreeDeciduous, TreePalmIcon, TreesIcon } from "lucide-react"; import { LinkIcon, TreeDeciduous, TreePalmIcon, TreesIcon } from "lucide-react";
import { useState } from "react"; import { useState } from "react";
import Contact from "@/components/Contact"; import Contact from "@/components/Contact";
import DraggableWindose from "@/components/DraggableWindose"; // import DraggableWindose from "@/components/DraggableWindose";
import TXT from "@/components/txt";
export default function Page() { export default function Page() {
const { theme } = useTheme(); const { theme } = useTheme();
@ -67,7 +66,6 @@ export default function Page() {
{/* <DraggableWindose targetPosition={targetPosition} isVisible={windowVisible} onClose={() => setWindowVisible(false)} onDragStart={() => setTargetPosition(null)} /> */} {/* <DraggableWindose targetPosition={targetPosition} isVisible={windowVisible} onClose={() => setWindowVisible(false)} onDragStart={() => setTargetPosition(null)} /> */}
<DraggableWindow /> <DraggableWindow />
<TXT />
<div className="max-w-3xl w-full"> <div className="max-w-3xl w-full">
<p> <strong></strong> <strong></strong> <strong>, </strong> .</p> <p> <strong></strong> <strong></strong> <strong>, </strong> .</p>
<p><strong> </strong> , .</p> <p><strong> </strong> , .</p>

View file

@ -1,4 +1,4 @@
import { Github, Instagram, MailIcon } from "lucide-react"; import { Github, Instagram, MailIcon, Rss } from "lucide-react";
import { import {
Tooltip, Tooltip,
TooltipContent, TooltipContent,
@ -12,6 +12,11 @@ const contact = [
"url": "mailto:me@imnya.ng", "url": "mailto:me@imnya.ng",
"icon": <MailIcon className="w-5 h-5" />, "icon": <MailIcon className="w-5 h-5" />,
}, },
{
"name": "Blog",
"url": "https://blog.imnya.ng",
"icon": <Rss className="w-5 h-5" />
},
{ {
"name": "GitHub", "name": "GitHub",
"url": "https://github.com/imnyang", "url": "https://github.com/imnyang",