-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
c9ea2f0
commit b5557c3
Showing
4 changed files
with
4,097 additions
and
7,635 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
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,22 @@ | ||
<template> | ||
<div class="flex flex-col flex-wrap gap-8"> | ||
<span class="text-white italic text-[4rem]"> | ||
<span class="font-[250] tracking wider">{{ title }}</span> | ||
</span> | ||
<ProjectCard | ||
v-for="(projectData, title) in data" | ||
:title="title" | ||
:description="projectData.description" | ||
:urls="projectData.links" | ||
:icon="projectData.icon" | ||
service="Modrinth" | ||
/> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
const props = defineProps({ | ||
data: Object, | ||
title: String, | ||
}) | ||
</script> |
Oops, something went wrong.