-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<script> | ||
import Tag from "../Tag.svelte"; | ||
const usedTechnologies = [ | ||
"HTML", | ||
"CSS", | ||
"Javascript", | ||
"Bootstrap", | ||
"Stimulus.js", | ||
"Turbo", | ||
"Tailwind CSS", | ||
"Python", | ||
"Ruby", | ||
"Ruby on rails", | ||
"PostgreSQL", | ||
"OracleDB", | ||
"MariaDB", | ||
"Git", | ||
"Github", | ||
"Docker", | ||
"AWS", | ||
]; | ||
</script> | ||
|
||
<section id="technologies"> | ||
<div class="container my-4 p-4"> | ||
<h2 class="text-xl text-center mb-4">My Tech Stacks</h2> | ||
<ul class="flex flex-wrap justify-center"> | ||
{#each usedTechnologies as usedTechnology} | ||
<li class="mx-1 mb-2"> | ||
<Tag text={usedTechnology} /> | ||
</li> | ||
{/each} | ||
</ul> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<script> | ||
export let text; | ||
</script> | ||
|
||
<div class="tag">{text}</div> | ||
|
||
<style global lang="scss"> | ||
.tag { | ||
@apply text-sm inline-block font-medium border border-primary-500 rounded py-1.5 px-3; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<script> | ||
import HomeSection from "../components/Sections/HomeSection.svelte"; | ||
import TechnologiesSection from "../components/Sections/TechnologiesSection.svelte"; | ||
</script> | ||
|
||
<svelte:head> | ||
<title>Fajarullah</title> | ||
</svelte:head> | ||
|
||
<HomeSection /> | ||
<TechnologiesSection /> |