-
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.
Update some UI, add portfolio interfaces, payment gateway icons . .
- Loading branch information
Showing
12 changed files
with
247 additions
and
22 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
- TypeScript | ||
- Tailwind CSS | ||
- Markdown-It | ||
- highlight.js | ||
- Highlight.js | ||
|
||
## Attributions | ||
|
||
|
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
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
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
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,32 @@ | ||
<template> | ||
<svg id="Layer_1" data-name="Layer 1" class="w-full h-auto p-1 fill-current aspect-auto" | ||
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55.42 59.793"> | ||
<title>Midtrans</title> | ||
<path class="cls-1" | ||
d="M3.959,48.243A3.958,3.958,0,0,1,0,44.285v-28.8a3.959,3.959,0,1,1,7.917,0v28.8A3.958,3.958,0,0,1,3.959,48.243Z" /> | ||
<path class="cls-2" | ||
d="M51.461,48.243A3.958,3.958,0,0,1,47.5,44.285V15.508a3.959,3.959,0,1,1,7.917,0V44.285A3.959,3.959,0,0,1,51.461,48.243Z" /> | ||
<path class="cls-3" | ||
d="M27.71,59.793a3.96,3.96,0,0,1-3.959-3.959V3.959a3.959,3.959,0,1,1,7.917,0V55.834A3.959,3.959,0,0,1,27.71,59.793Z" /> | ||
</svg> | ||
</template> | ||
|
||
<style scoped> | ||
.cls-1 { | ||
fill: #9ddcf9; | ||
} | ||
.cls-1, | ||
.cls-2, | ||
.cls-3 { | ||
fill-rule: evenodd; | ||
} | ||
.cls-2 { | ||
fill: #00acdb; | ||
} | ||
.cls-3 { | ||
fill: #0256a7; | ||
} | ||
</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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<template> | ||
<svg version="1.1" id="Layer_1" class="w-full h-auto -m-2 fill-current scale-[1.2] aspect-auto" | ||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" | ||
viewBox="0 0 260.9 286.7" xml:space="preserve"> | ||
<title>Xendit</title> | ||
<g> | ||
<g> | ||
<polygon class="st0" | ||
points="138.8,56.3 90.1,56.3 39.9,143.4 90.1,230.4 100,213.3 59.7,143.4 100,73.5 128.8,73.5 " /> | ||
<polygon class="st1" points="104.5,115.4 114.4,98.3 100,73.5 90.1,90.7 " /> | ||
<polygon class="st1" points="160.9,73.5 170.8,90.7 100,213.3 90.1,196.1 " /> | ||
<polygon class="st0" | ||
points="122.2,230.4 132,213.2 160.9,213.2 201.2,143.4 160.9,73.5 170.8,56.3 221,143.4 170.8,230.4 " /> | ||
<polygon class="st1" points="156.2,171 146.3,188.1 160.9,213.2 170.8,196.3 " /> | ||
</g> | ||
</g> | ||
</svg> | ||
</template> | ||
|
||
<style scoped type="text/css"> | ||
.st0 { | ||
fill: #446CB3; | ||
} | ||
.st1 { | ||
fill: #D24D57; | ||
} | ||
</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
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,9 @@ | ||
import type IGreetings from "./IGreetings"; | ||
import type IProjectInfo from "./IProjectInfo"; | ||
import type ISourceContent from "./ISourceContent"; | ||
|
||
export interface IPortfolio extends IGreetings { | ||
rootDir: string; | ||
source?: ISourceContent; | ||
projects?: IProjectInfo[]; | ||
} |
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,12 @@ | ||
export default interface IProjectInfo { | ||
id: number; | ||
title: string; | ||
description: string; | ||
date: string; | ||
slug?: string; | ||
imagesDir?: string; | ||
url?: string; | ||
repo?: string; | ||
features: string[]; | ||
technologies: string[]; | ||
} |
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
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
Oops, something went wrong.