Skip to content

Commit

Permalink
improve 'aboutme' command
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmin-panescu committed Jan 22, 2025
1 parent 5029209 commit 3265799
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
26 changes: 23 additions & 3 deletions scripts/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,28 @@ var email = "mailto:1panescu.cosmin@gmail.com";

var aboutme = [
"<br>",
"Hello, I'm Cosmin! πŸ‘‹",
"My dream job is to be a cybersecurity officer.",
"Hello, I'm <span class='white-glow'>Cosmin</span>! πŸ‘‹",
"<br>",
"<span class='white-glow'>My fields of interest are:</span>",
" β”‚",
" β”œβ”€ Cybersecurity",
" └─ Web Development",
"<br>",
"<span class='white-glow'>About me:</span>",
" β”‚",
" β”œβ”€ Hello there! I am primarily a web developer,",
" β”œβ”€ but my main goal is to become a Cybersecurity Engineer.",
" β”‚",
" β”œβ”€ I love learning new technologies and using,",
" β”œβ”€ them to create cool projects.",
" β”‚",
" β”œβ”€ You can learn about some of my projects",
" β”œβ”€ using the <span class='green-glow'>'projects'</span> command.",
" β”‚",
" β”œβ”€ Check out my GitHub account to see more of what I've made",
" β”œβ”€ using the <span class='green-glow'>'github'</span> command.",
" β”‚",
" └─ Contact me at <a href='mailto:1panescu.cosmin@gmail.com'><span class='green-glow'>'1panescu.cosmin@gmail.com'</span></a>.",
"<br>",
];

Expand Down Expand Up @@ -54,7 +74,7 @@ var help = [
];

var banner = [
'<h1 class="index">Cosmin Panescu</h1>',
`<h1 class="index">Cosmin Panescu</h1>`,

'<span class="color2">Welcome to my portfolio website with an interactive terminal.</span>',
'<span class="color2">To get a list of available commands, type</span> <span class="command">\'help\'</span><span class="color2">.</span>',
Expand Down
6 changes: 6 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,15 @@ a:hover {
}

.white-glow {
color: var(--text-color);
text-shadow: 0 0 5px var(--text-color);
}

.green-glow {
color: var(--glow-commands-color);
text-shadow: 0 0 5px var(--glow-commands-color);
}

a:focus {
outline: 0;
}
Expand Down

0 comments on commit 3265799

Please sign in to comment.