-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
System color theme fix, crammed all projects/templates into their own…
… files
- Loading branch information
Showing
20 changed files
with
115 additions
and
82 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
Binary file not shown.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,54 @@ | ||
{ | ||
"repositories": [ | ||
{ | ||
"name": "twitch-tui", | ||
"url": "https://github.com/Xithrius/twitch-tui", | ||
"description": "Twitch chat in the terminal" | ||
}, | ||
{ | ||
"name": "xithrius.cloud", | ||
"url": "https://github.com/Xithrius/xithrius.cloud", | ||
"description": "Personal portfolio website" | ||
}, | ||
{ | ||
"name": "Solarius", | ||
"url": "https://github.com/Xithrius/Solarius", | ||
"description": "Summarizing results of your favorite search engines" | ||
}, | ||
{ | ||
"name": "Xythrion", | ||
"url": "https://github.com/Xithrius/Xythrion", | ||
"description": "Discord graphing bot" | ||
}, | ||
{ | ||
"name": "Competitive programming", | ||
"url": "https://github.com/Xithrius/competitive-programming", | ||
"description": "Competitive programming on different platforms" | ||
}, | ||
{ | ||
"name": "Gradient skins", | ||
"url": "https://github.com/Xithrius/gradient-skins", | ||
"description": "Generate gradient Minecraft skins with ease" | ||
}, | ||
{ | ||
"name": "Nitroxide", | ||
"url": "https://github.com/Xithrius/nitroxide", | ||
"description": "Another modern file explorer" | ||
}, | ||
{ | ||
"name": "Ordis", | ||
"url": "https://github.com/Xithrius/Ordis", | ||
"description": "Cephalon Ordis from Warframe as a Discord bot" | ||
}, | ||
{ | ||
"name": "timezone-tracker", | ||
"url": "https://github.com/Xithrius/timezone-tracker", | ||
"description": "Converting/tracking timezones of others relative to your local time" | ||
}, | ||
{ | ||
"name": "titan.xithrius.cloud", | ||
"url": "https://github.com/Xithrius/titan.xithrius.cloud", | ||
"description": "Home server setup" | ||
} | ||
] | ||
} |
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 @@ | ||
{ | ||
"repositories": [ | ||
{ | ||
"name": "nextjs-fastapi-auth-template", | ||
"url": "https://github.com/Xithrius/nextjs-fastapi-auth-template", | ||
"description": "Next.js, FastAPI-users, iron-session, and SQLAlchemy" | ||
}, | ||
{ | ||
"name": "rust-binary-project-template", | ||
"url": "https://github.com/Xithrius/rust-binary-project-template", | ||
"description": "A template for Rust binary projects" | ||
} | ||
] | ||
} |
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 was deleted.
Oops, something went wrong.
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,31 @@ | ||
<template> | ||
<main class="min-h-screen"> | ||
<div | ||
v-for="(repos, repo_id) in repo_list" | ||
:key="repo_id" | ||
> | ||
<AppHeader | ||
class="mb-8" | ||
:title="repos.title" | ||
/> | ||
<div class="space-y-4 mb-8"> | ||
<AppProjectCard | ||
v-for="(repo, id) in repos.repositories" | ||
:key="id" | ||
:project="repo" | ||
/> | ||
</div> | ||
</div> | ||
</main> | ||
</template> | ||
|
||
<script setup> | ||
useSeoMeta({ | ||
title: 'Showcase | xithrius.cloud', | ||
description: 'Showcase of projects and templates', | ||
}) | ||
const { data: repo_list } = await useAsyncData('showcase-all', () => | ||
queryContent('/showcase').find() | ||
) | ||
</script> |
0ecffa9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
xithrius-cloud – ./
xithrius-cloud-xithrius.vercel.app
xithrius-cloud-git-main-xithrius.vercel.app
xithrius.cloud