-
-
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
SkwalExe
committed
May 26, 2024
1 parent
7a2c46e
commit 744e997
Showing
7 changed files
with
61 additions
and
11 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,4 @@ | ||
export const winmb = | ||
'WinMB.js is a library that enables developers to create Windows-style message boxes directly on their websites. This tool provides a way to integrate familiar dialog boxes by mimicking the native Windows interface.' | ||
export const memz = | ||
'Memz.js is a JavaScript library I created with the aim of mimicking the virus behavior on a website, all within a web browser. Rest assured, it\'s completely harmless and its unique purpose is to have fun.' |
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,23 @@ | ||
<template> | ||
<BoxFancy class="h-full min-w-[480px]"> | ||
<div class="flex flex-col justify-between h-full"> | ||
<div> | ||
<h1> | ||
<Icon v-if="icon !== undefined" :name="icon" /> | ||
{{ title }} | ||
</h1> | ||
<p>{{ text }}</p> | ||
</div> | ||
<img class="border-[1px] border-white/20 rounded-xl mt-3 w-full" :src="image" alt="Tile banner" /> | ||
</div> | ||
</BoxFancy> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const {title, text, image, icon} = defineProps<{ | ||
title: string | ||
text: string | ||
image: string | ||
icon?: string | ||
}>() | ||
</script> |
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> | ||
<div class="mt-16 flex gap-5 flex-wrap-reverse"> | ||
<a href="/winmb" class="tile"> | ||
<Tile | ||
title="WinMB.js" | ||
:text="winmb" | ||
icon="openmoji:windows" | ||
image="https://raw.githubusercontent.com/SkwalExe/WinMB.js/main/assets/banner.png" /> | ||
</a> | ||
<a href="/memz" class="tile"> | ||
<Tile | ||
title="Memz.js" | ||
:text="memz" | ||
image="https://raw.githubusercontent.com/SkwalExe/Memz.js/main/assets/banner.png" /> | ||
</a> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import {winmb, memz} from '~/assets/descriptions' | ||
import Tile from '~/components/Tile.vue' | ||
</script> | ||
|
||
<style scoped> | ||
.tile { | ||
@apply basis-0 grow; | ||
} | ||
</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
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