feat: Add blog contact method to the contact component
This commit is contained in:
parent
cca4002e16
commit
fb2595679b
2 changed files with 7 additions and 4 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue