feat: new link into links

This commit is contained in:
Ahmet Kaan Gümüş 2025-04-06 12:16:44 +03:00
parent 5b4dbf03c1
commit 00123c8035
3 changed files with 4 additions and 3 deletions

View file

@ -28,5 +28,5 @@ steps:
- mkdir -p ~/.ssh - mkdir -p ~/.ssh
- echo "$${SSH_PRIVATE_KEY}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa - echo "$${SSH_PRIVATE_KEY}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
- ssh-keyscan -H $${SSH_HOST} > ~/.ssh/known_hosts - ssh-keyscan -H $${SSH_HOST} > ~/.ssh/known_hosts
- ssh $${SSH_USER}@$${SSH_HOST} "export PATH="$${CARGO_PATH}:$PATH" && cd $${WORK_DIR} && git checkout $${MAIN_BRANCH} && git pull --rebase && dx build --release && cp -r $${ARTIFACT_DIR} $${DEPLOY_PATH} && rm -rf $${DEPLOY_PATH}/personality && mv $${DEPLOY_PATH}/public $${DEPLOY_PATH}/personality" - ssh $${SSH_USER}@$${SSH_HOST} "export PATH="$${CARGO_PATH}:$PATH" && cd $${WORK_DIR} && git checkout $${MAIN_BRANCH} && git pull --rebase && dx bundle --release && cp -r $${ARTIFACT_DIR} $${DEPLOY_PATH} && rm -rf $${DEPLOY_PATH}/personality && mv $${DEPLOY_PATH}/public $${DEPLOY_PATH}/personality"
- rm -rf ~/.ssh - rm -rf ~/.ssh

View file

@ -16,13 +16,13 @@ pub fn Home() -> Element {
"Ahmet Kaan Gümüş"} "Ahmet Kaan Gümüş"}
h4 { h4 {
id: "title", id: "title",
"System && Back End Developer"} "Engineer"}
div { div {
id: "main_about", id: "main_about",
" "
Hi, I'm Ahmet Kaan. I'm Turk. I was born in 2001. Hi, I'm Ahmet Kaan. I'm Turk. I was born in 2001.
I graduated from the computer science major at Erciyes University. I graduated from the computer engineering major at Erciyes University.
I'm keen on understanding computers as deeply as possible. I'm keen on understanding computers as deeply as possible.
I love open source philosophy and KISS principle. I love open source philosophy and KISS principle.

View file

@ -9,6 +9,7 @@ pub fn Links() -> Element {
div { div {
class: "links_list", class: "links_list",
h1 {"Links"} h1 {"Links"}
div {class: "links_link", Link {to: "https://source.tahinli.com/Tahinli", class: "links_link", "My Personal Git Website"} }
div {class: "links_link", Link {to: "https://codeberg.org/Tahinli", class: "links_link", "Codeberg"} } div {class: "links_link", Link {to: "https://codeberg.org/Tahinli", class: "links_link", "Codeberg"} }
div {class: "links_link", Link {to: "https://github.com/Tahinli", class: "links_link", "GitHub"} } div {class: "links_link", Link {to: "https://github.com/Tahinli", class: "links_link", "GitHub"} }
} }