aboutsummaryrefslogtreecommitdiff
path: root/src/partials
diff options
context:
space:
mode:
authorAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2025-03-14 22:21:47 +0100
committerAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2025-03-14 22:21:47 +0100
commit54dab1e00b38693e96c801d0c5a020693a35bbda (patch)
treee0c61e6b694a1e8c8a6618671a9f5c738e6e621f /src/partials
parent847294bbf1b4bfa213b7ac03757aa2cf444c31bd (diff)
Refactor SCSS imports to use @use syntax, update portfolio entries, and add new projects
Diffstat (limited to 'src/partials')
-rw-r--r--src/partials/Footer.astro2
-rw-r--r--src/partials/Header.astro2
-rw-r--r--src/partials/TechnologyBadge.astro14
3 files changed, 4 insertions, 14 deletions
diff --git a/src/partials/Footer.astro b/src/partials/Footer.astro
index 9db5a05..dae78b7 100644
--- a/src/partials/Footer.astro
+++ b/src/partials/Footer.astro
@@ -18,7 +18,7 @@
</footer>
<style lang="scss">
- @import "../../styles/shared.scss";
+ @use "../../styles/shared.scss" as *;
footer {
background-color: $dark;
diff --git a/src/partials/Header.astro b/src/partials/Header.astro
index 4378ddc..35a39ae 100644
--- a/src/partials/Header.astro
+++ b/src/partials/Header.astro
@@ -7,7 +7,7 @@
</header>
<style lang="scss">
- @import "../../styles/shared.scss";
+ @use "../../styles/shared.scss" as *;
header {
color: $accent;
diff --git a/src/partials/TechnologyBadge.astro b/src/partials/TechnologyBadge.astro
index 491bcea..09cd377 100644
--- a/src/partials/TechnologyBadge.astro
+++ b/src/partials/TechnologyBadge.astro
@@ -9,7 +9,7 @@ interface Technology {
export const technologies: { [key: string]: Technology } = {
java: {
name: "Java",
- colour: "#f29111",
+ colour: "#e76f00",
icon: "java",
},
dotnet: {
@@ -24,7 +24,7 @@ export const technologies: { [key: string]: Technology } = {
},
mysql: {
name: "MySQL",
- colour: "#f29221",
+ colour: "#3a75b0",
icon: "mysql",
},
mongodb: {
@@ -58,21 +58,11 @@ export const technologies: { [key: string]: Technology } = {
colour: "#007acc",
icon: "typescript",
},
- webtrio: {
- name: "Web trio",
- colour: "#ff400c",
- icon: "webtrio",
- },
azure: {
name: "Azure",
colour: "#0089d6",
icon: "azure",
},
- javafx: {
- name: "JavaFX",
- colour: "#c91e21",
- icon: "javafx",
- },
linux: {
name: "Linux",
colour: "#010101",