Skip to content

Commit

Permalink
.skills component
Browse files Browse the repository at this point in the history
  • Loading branch information
TjasaZil committed Dec 3, 2022
1 parent cc768cf commit b4c661c
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<section class="bg-neutral-800 overflow-x-hidden">
<NavbarComponent />
<HeroComponent />
<SkillsComponent />
<ProjectsComponent />
<FooterComponent />
</section>
Expand All @@ -13,6 +14,7 @@ import HeroComponent from "@/components/Hero/HeroComponent.vue";
import FooterComponent from "./components/Shared/FooterComponent.vue";
import NavbarComponent from "./components/Shared/NavbarComponent.vue";
import ProjectsComponent from "./components/Projects/ProjectsComponent.vue";
import SkillsComponent from "./components/Skills/SkillsComponent.vue";
export default defineComponent({
name: "App",
Expand All @@ -21,6 +23,7 @@ export default defineComponent({
FooterComponent,
NavbarComponent,
ProjectsComponent,
SkillsComponent,
},
});
</script>
Expand Down
83 changes: 83 additions & 0 deletions src/components/Skills/SkillsComponent.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<template>
<section
class="flex flex-col mt-32 rounded-lg bg-neutral-900 w-11/12 mx-auto h-auto p-6 max-w-7xl"
>
<div
class="flex flex-col mx-auto text-center sm:mx-0 sm:flex-row space-x-10 sm:justify-between sm:items-center"
>
<h2 class="text-xl lg:text-3xl font-bold">Skills</h2>
</div>
<div class="flex flex-col space-y-16 mx-auto">
<div class="flex flex-col mt-16">
<h3>I Work most with:</h3>

<div
class="flex flex-row flex-wrap space-x-3 lg:space-x-8 xl:space-x-10"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original-wordmark.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original-wordmark.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/tailwindcss/tailwindcss-plain.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/jest/jest-plain.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vuejs/vuejs-original.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vscode/vscode-original.svg"
/>
</div>
</div>
<div class="flex flex-col">
<h3>Familiar with:</h3>
<div
class="flex flex-row flex-wrap space-x-3 lg:space-x-8 xl:space-x-10"
>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/sass/sass-original.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/firebase/firebase-plain.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original-wordmark.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/php/php-original.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/laravel/laravel-plain-wordmark.svg"
/>
<img
src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/svelte/svelte-original.svg"
/>
</div>
</div>
</div>
</section>
</template>

<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "SkillsComponent",
});
</script>

<style scoped>
img {
@apply w-8 lg:w-10 xl:w-16 mt-4 ml-3 hover:cursor-pointer;
}
h3 {
@apply xl:text-xl italic;
}
</style>

0 comments on commit b4c661c

Please sign in to comment.