mirror of
https://github.com/xHyroM/website.git
synced 2024-11-22 06:51:05 +01:00
feat: add python icon
This commit is contained in:
parent
18bdfcde36
commit
b62b136ea0
2 changed files with 8 additions and 3 deletions
|
@ -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",
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue