From dc24df0909b1a113d9e4ea1a0511d6dfe933b0fb Mon Sep 17 00:00:00 2001 From: DefectingCat Date: Fri, 25 Mar 2022 20:30:48 +0800 Subject: [PATCH] Add personal describe --- pages/index.tsx | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/pages/index.tsx b/pages/index.tsx index bcf8ddc..ca0511e 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,8 +1,12 @@ +import cn from 'classnames'; import MainLayout from 'layouts/MainLayout'; import Head from 'next/head'; +import { useState } from 'react'; import type { NextPageWithLayout } from 'types'; const Home: NextPageWithLayout = () => { + const [showLang, setShowLang] = useState(false); + return ( <> @@ -10,7 +14,43 @@ const Home: NextPageWithLayout = () => {
-
Hi there,👋 Im a next.js app.
+
+
+

Hi there 👋, I'm Arthur.

+

I'm a Fron-end developer. Yes, that's mean

+

setShowLang(true)} + onMouseLeave={() => setShowLang(false)} + > + + I make websites{' '} + + + (and web apps) + + + .{' '} + + The{' '} + + JavaScript + + + TypeScript + {' '} + is my favorite language. +

+

+ I'm not a creator. Just a little guy standing on the + shoulders of giants with a little imagination. +

+

+ Open source is my passion. It's making everything be great.{' '} +

+
+
);