added place to keep learning notes

This commit is contained in:
2026-01-08 20:31:04 +00:00
parent 8fb35222ac
commit c73c535a0a
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<script setup>
import RouterTable from "@/components/quick/RouterTable.vue";
const note_links = [
{ name: "ILSP", link: "/notes/islp" },
{ name: "Vue", link: "/notes/vue" },
];
</script>
<template>
<main class="center-content flex-col">
<div class="a4page-portrait bdr-1 flex-col relative scroll-y gap">
<RouterTable :linkArr="note_links" />
</div>
</main>
</template>

View File

@@ -0,0 +1,18 @@
<template>
<main class="center-content flex-col">
<div class="a4page-portrait bdr-1 flex-col relative scroll-y">
<div class="bdr-primary">
<h1>Welcome to my ILSP notes</h1>
<p>
I'm taking up the course so that I can apply some machine
learning techniques to data involved in my personal
projects.
</p>
</div>
<h2>Chapter 2</h2>
<h3>Solutions</h3>
<p></p>
</div>
</main>
</template>

View File

@@ -0,0 +1,9 @@
<template>
<main class="center-content flex-col">
<div class="a4page-portrait bdr-1 flex-col relative scroll-y">
<h1>These are my notes about Vue.js</h1>
<h1>Pinia</h1>
<h1>Composition API</h1>
</div>
</main>
</template>