mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38: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",
|
||||
icon: "logos:tailwindcss-icon",
|
||||
},
|
||||
{
|
||||
name: "Python",
|
||||
icon: "logos:python",
|
||||
},
|
||||
{
|
||||
name: "Java",
|
||||
icon: "logos:java",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
import SEOEmbed from "@components/widgets/SEOEmbed.astro";
|
||||
import Snow from "../components/widgets/decorations/Snow.astro";
|
||||
|
||||
const { title, description, keywords, schemaOrg } = {
|
||||
title: "xHyroM",
|
||||
|
@ -9,7 +10,7 @@ const { title, description, keywords, schemaOrg } = {
|
|||
};
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
|
@ -39,12 +40,12 @@ const { title, description, keywords, schemaOrg } = {
|
|||
)
|
||||
}
|
||||
</head>
|
||||
<body class="overflow-x-hidden snow-container bg-dark-900 font-sans">
|
||||
<body class="overflow-x-hidden bg-dark-900 font-sans">
|
||||
<slot />
|
||||
<Snow />
|
||||
|
||||
<script>
|
||||
import "@scripts/menu.ts";
|
||||
import "@scripts/snow.js"
|
||||
</script>
|
||||
<style is:global>
|
||||
::-webkit-scrollbar {
|
||||
|
|
Loading…
Reference in a new issue