feat: add python icon

This commit is contained in:
Jozef Steinhübl 2023-12-06 22:06:18 +01:00
parent 18bdfcde36
commit b62b136ea0
No known key found for this signature in database
GPG key ID: E944BC293F5FF7E7
2 changed files with 8 additions and 3 deletions

View file

@ -67,6 +67,10 @@ export const SKILLS = [
name: "TailwindCSS", name: "TailwindCSS",
icon: "logos:tailwindcss-icon", icon: "logos:tailwindcss-icon",
}, },
{
name: "Python",
icon: "logos:python",
},
{ {
name: "Java", name: "Java",
icon: "logos:java", icon: "logos:java",

View file

@ -1,5 +1,6 @@
--- ---
import SEOEmbed from "@components/widgets/SEOEmbed.astro"; import SEOEmbed from "@components/widgets/SEOEmbed.astro";
import Snow from "../components/widgets/decorations/Snow.astro";
const { title, description, keywords, schemaOrg } = { const { title, description, keywords, schemaOrg } = {
title: "xHyroM", title: "xHyroM",
@ -9,7 +10,7 @@ const { title, description, keywords, schemaOrg } = {
}; };
--- ---
<!DOCTYPE html> <!doctype html>
<html lang="en-US"> <html lang="en-US">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
@ -39,12 +40,12 @@ const { title, description, keywords, schemaOrg } = {
) )
} }
</head> </head>
<body class="overflow-x-hidden snow-container bg-dark-900 font-sans"> <body class="overflow-x-hidden bg-dark-900 font-sans">
<slot /> <slot />
<Snow />
<script> <script>
import "@scripts/menu.ts"; import "@scripts/menu.ts";
import "@scripts/snow.js"
</script> </script>
<style is:global> <style is:global>
::-webkit-scrollbar { ::-webkit-scrollbar {