mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 21:14:23 +00:00
Learn some basic algorithms via
https://github.com/trekhleb/javascript-algorithms?tab=readme-ov-file super cool repo! This algorithm will just run on the client, if it isn't my server will blow up :( Maybe I will just make a postgres db that sends the users processing info to save other users processing power?
This commit is contained in:
parent
2f2b4b1d19
commit
edd8e5b05a
13 changed files with 127 additions and 462 deletions
|
@ -43,7 +43,7 @@ import FavStaredWindow from "~/components/app/windows/fav.vue";
|
|||
import Error404Window from "~/components/app/windows/error404.vue";
|
||||
import NewsViewWindow from "~/components/app/windows/newsView.vue";
|
||||
|
||||
// Icons
|
||||
// Import Icons
|
||||
import {
|
||||
ComputerDesktopIcon,
|
||||
UserIcon,
|
||||
|
@ -541,7 +541,7 @@ watchEffect((cleanupFn) => {
|
|||
</Transition>
|
||||
<!--Main desktop contents-->
|
||||
<div
|
||||
class="flex flex-col justify-center align-center text-center absolute w-full h-screen inset-x-0 inset-y-0 z-[-10]"
|
||||
class="flex flex-col justify-center align-center text-center absolute w-full h-screen inset-x-0 inset-y-0"
|
||||
id="desktop"
|
||||
></div>
|
||||
<Transition>
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
<script setup lang="ts">
|
||||
const { data: home } = await useAsyncData(() =>
|
||||
queryCollection("content").path("/").first(),
|
||||
);
|
||||
|
||||
useSeoMeta({
|
||||
title: home.value?.title,
|
||||
description: home.value?.description,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ContentRenderer v-if="home" :value="home" />
|
||||
<div v-else>Home not found</div>
|
||||
</template>
|
|
@ -1,15 +0,0 @@
|
|||
<script setup lang="ts">
|
||||
const { data: home } = await useAsyncData(() =>
|
||||
queryCollection("content").path("/").first(),
|
||||
);
|
||||
|
||||
useSeoMeta({
|
||||
title: home.value?.title,
|
||||
description: home.value?.description,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ContentRenderer v-if="home" :value="home" />
|
||||
<div v-else>Home not found</div>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue