diff --git a/index.html b/index.html index bb6896f..84e5300 100755 --- a/index.html +++ b/index.html @@ -2,9 +2,9 @@
- + -You can check my (blog) posts by clicking the button below:
+ +EposNow
+UTFPR
(Federal University of Technology of Paraná) +Curitiba, PR - Brazil
diff --git a/src/components/ResumeContent.tsx b/src/components/ResumeContent.tsx index 5e582fb..9e6ed08 100644 --- a/src/components/ResumeContent.tsx +++ b/src/components/ResumeContent.tsx @@ -3,22 +3,14 @@ import TerminalButton from './TerminalButton'; const ResumeContent: React.FC = () => { const resumeUrl = "https://drive.google.com/file/d/1oYf68qKXUnBz7d4qjHX-hTw_-f5EKgeF/view?usp=sharing"; - const downloadUrl = "https://drive.google.com/file/d/1oYf68qKXUnBz7d4qjHX-hTw_-f5EKgeF/view?usp=sharing"; return (You can check my resume by clicking the button below:
++{` _____ __ _ _ _ _____ / ____|/ /_ (_) | | |/ ____| @@ -11,7 +12,9 @@ const SkillsContent: React.FC = () => { \\___ \\| | | | | | | |\\____ \\ ____) | | | | | | | | ____) | |_____/|_| |_|_|_| |_||_____/ - +`}++{` Programming: ├── Languages: C# (.NET Core, .NET Framework, ASP.NET Core) ├── Languages: TypeScript, JavaScript, Python, Golang, Java, C/C++ diff --git a/src/styles/skills.css b/src/styles/skills.css new file mode 100644 index 0000000..cf97d11 --- /dev/null +++ b/src/styles/skills.css @@ -0,0 +1,33 @@ +@keyframes rainbow-text { + 0% { color: #ff0000; } + 16% { color: #ffa500; } + 32% { color: #ffff00; } + 48% { color: #00ff00; } + 64% { color: #00ffff; } + 80% { color: #0000ff; } + 100% { color: #ff00ff; } + } + + .skills-text { + background: linear-gradient( + to right, + #ff0000 0%, + #ffa500 16%, + #ffff00 32%, + #00ff00 48%, + #00ffff 64%, + #0000ff 80%, + #ff00ff 100% + ); + -webkit-background-clip: text; + background-clip: text; + color: transparent; + background-size: 200% auto; + animation: rainbow-slide 5s linear infinite; + } + + @keyframes rainbow-slide { + to { + background-position: -200% center; + } + } \ No newline at end of file