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 { useState } from "react";
import Contact from "@/components/Contact";
import DraggableWindose from "@/components/DraggableWindose";
import TXT from "@/components/txt";
// import DraggableWindose from "@/components/DraggableWindose";
export default function Page() {
const { theme } = useTheme();
@ -67,7 +66,6 @@ export default function Page() {
{/* <DraggableWindose targetPosition={targetPosition} isVisible={windowVisible} onClose={() => setWindowVisible(false)} onDragStart={() => setTargetPosition(null)} /> */}
<DraggableWindow />
<TXT />
<div className="max-w-3xl w-full">
<p> <strong></strong> <strong></strong> <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 {
Tooltip,
TooltipContent,
@ -12,6 +12,11 @@ const contact = [
"url": "mailto:me@imnya.ng",
"icon": <MailIcon className="w-5 h-5" />,
},
{
"name": "Blog",
"url": "https://blog.imnya.ng",
"icon": <Rss className="w-5 h-5" />
},
{
"name": "GitHub",
"url": "https://github.com/imnyang",