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 { 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>
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue