diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-04-30 18:50:33 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-04-30 18:50:33 +0300 |
commit | 2ba81d08b836457deb64c4c258afbee763c13330 (patch) | |
tree | 3686201861031a89d2404e3b3f4484d15edcc325 | |
parent | 9085f5cae2c3c5b0d5db75a4046f0c0a8cdf29cc (diff) | |
download | stvnliu.gitlab.io-2ba81d08b836457deb64c4c258afbee763c13330.tar.gz stvnliu.gitlab.io-2ba81d08b836457deb64c4c258afbee763c13330.tar.bz2 stvnliu.gitlab.io-2ba81d08b836457deb64c4c258afbee763c13330.zip |
feat: add resume and link to
-rw-r--r-- | app/public/resume.pdf | bin | 0 -> 143718 bytes | |||
-rw-r--r-- | app/src/App.tsx | 19 |
2 files changed, 9 insertions, 10 deletions
diff --git a/app/public/resume.pdf b/app/public/resume.pdf Binary files differnew file mode 100644 index 0000000..7ca0108 --- /dev/null +++ b/app/public/resume.pdf diff --git a/app/src/App.tsx b/app/src/App.tsx index 49f390d..3be720d 100644 --- a/app/src/App.tsx +++ b/app/src/App.tsx @@ -1,16 +1,15 @@ -import React from 'react'; -import logo from './logo.svg'; import './App.css'; function App() { - return ( - <div className="App"> - <div className="aboutme"> - <h1>Zhongheng Liu</h1> - <p>-- Web developer and GNU/Linux enthusiast.</p> - </div> - </div> - ); + return ( + <div className="App"> + <div className="aboutme"> + <h1>Zhongheng Liu</h1> + <p>-- Web developer and GNU/Linux enthusiast.</p> + <button onClick={() => {window.location.assign("/resume.pdf");}}>Learn more</button> + </div> + </div> + ); } export default App; |