blob: cdcbfa3d7e72d566d17199d69559f4f9dc180115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { VirtualTextFile } from "$/apps/source";
import { Hr } from "../hr";
import { Link } from "../link";
export default {
name: "Memory.txt",
type: "text",
content: (
<>
<h1>Memory</h1>
<h3>Reconstructing human music after the singularity</h3>
<p>I have been learning guitar for a year now and finally felt comfortable enough with my skill level to make a full song using it! Heavily inspired by the music from <Link link="https://www.youtube.com/playlist?list=OLAK5uy_mNWkxcU6VC_aWOFnpqYha-J5UMzwbVlx4" type="link">kessoku band</Link> and <Link link="https://youtu.be/XLwmEuM0dIw" type="link">Sunfaded</Link>.</p>
<p>Memory is expensive nowadays, so cherish it while you can.</p>
</>
),
height: "70vh",
width: "70vw",
} as VirtualTextFile;
|