more links

This commit is contained in:
2026-01-23 16:51:32 +00:00
parent 92b86ba89b
commit c96eeb75db
2 changed files with 17 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ const props = defineProps({
},
});
const show_links = ref(true);
const show_links = ref(false);
</script>
<template>

View File

@@ -3,6 +3,21 @@ import { ref } from "vue";
import ToggleLinkTable from "@/components/quick/ToggleLinkTable.vue";
const reading_links = [
{
name: "Substack",
link: "https://substack.com/",
},
{
name: "Medium",
link: "https://medium.com/",
},
{
name: "4Chan",
link: "https://www.4chan.org/",
},
];
const job_links = [
{
name: "LinkedIn",
@@ -211,6 +226,7 @@ const article_links = [
<ToggleLinkTable title="Job Apps" :linkArr="job_links" />
<ToggleLinkTable title="Social" :linkArr="social_links" />
<ToggleLinkTable title="Other Docs" :linkArr="doc_links" />
<ToggleLinkTable title="Fun Reading" :linkArr="reading_links" />
<ToggleLinkTable
title="Helpful Articles"
:linkArr="article_links"