forked from harlan-zw/harlanzw.com
-
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.
Merge pull request #1 from omgitsjan/personalize
Enhanced Customization, Code Formatting, and Readme Updates
- Loading branch information
Showing
55 changed files
with
1,955 additions
and
5,654 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,14 @@ | ||
# Ignore all Markdown files: | ||
*.md | ||
|
||
# Ignore node modules: | ||
node_modules | ||
|
||
# Ignore dist directory: | ||
dist | ||
|
||
# Ignore public directory: | ||
public | ||
|
||
# Ignore specific file: | ||
src/main.js |
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,16 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"singleQuote": true, | ||
"semi": false, | ||
"htmlWhitespaceSensitivity": "ignore", | ||
"arrowParens": "avoid", | ||
"overrides": [ | ||
{ | ||
"files": ["*.vue"], | ||
"options": { | ||
"parser": "vue" | ||
} | ||
} | ||
] | ||
} |
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,47 @@ | ||
<script lang="ts" setup> | ||
import type { PropType } from 'vue' | ||
import type { Entry } from '~/types' | ||
const props = defineProps({ | ||
entry: Object as PropType<Entry>, | ||
}) | ||
</script> | ||
|
||
<template> | ||
<a | ||
:href="entry?.link" | ||
target="_blank" | ||
class="relative px-4 py-3 group rounded border-gray-200/10 border-2 hover:bg-white dark:(border-gray-800/10) dark:hover:bg-gray-800 transition-all" | ||
> | ||
<div class="!flex"> | ||
<div class="flex-shrink mt-2 mr-2"> | ||
<icon | ||
v-if="entry?.icon" | ||
:name="entry.icon" | ||
class="w-14 h-auto opacity-70 mr-2 group-hover:opacity-75 transition-all svg-container" | ||
/> | ||
</div> | ||
<div class="flex-grow"> | ||
<div class="mb-2"> | ||
<h3 class="-mb-1 font-bold">{{ entry?.name }}</h3> | ||
<span class="opacity-50 text-xs">{{ entry?.link }}</span> | ||
</div> | ||
</div> | ||
</div> | ||
<p class="text-sm opacity-90 mb-3 m-0"> | ||
{{ entry?.description || 'placeholder' }} | ||
</p> | ||
<div class="text-xs inline-flex items-center absolute top-4 right-4"> | ||
<i-uim:calender class="inline mr-1 mb-2px" /> | ||
Since | ||
{{ entry?.since || 'A while Ago' }} | ||
</div> | ||
</a> | ||
</template> | ||
|
||
<style> | ||
.svg-container svg { | ||
width: 35px; | ||
height: 35px; | ||
} | ||
</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 |
---|---|---|
@@ -1,12 +1,16 @@ | ||
<template> | ||
<div class="border-1 border-teal-800/30 dark:bg-blue-800/20 px-3 py-2 rounded"> | ||
<p class="font-bold mb-3 text-lg"> | ||
Monthly newsletter | ||
</p> | ||
<div | ||
class="border-1 border-teal-800/30 dark:bg-blue-800/20 px-3 py-2 rounded" | ||
> | ||
<p class="font-bold mb-3 text-lg">Regularly newsletter</p> | ||
<p class="mb-2"> | ||
Each month I send an update of my journey working on open-source. My <NuxtLink to="https://github.com/harlan-zw/" target="_blank"> | ||
GitHub sponsors | ||
</NuxtLink> community gets early access. | ||
At least each quarter I try to send an update of my journey working on | ||
different projects and topics to my | ||
<NuxtLink to="https://discord.com/invite/janslounge" target="_blank"> | ||
Discord community | ||
</NuxtLink> | ||
. | ||
</p> | ||
<p>After 2 weeks it's made public.</p> | ||
</div> | ||
</template> |
Oops, something went wrong.