diff --git a/build_garden.js b/build_garden.js index b5b26436..38294bea 100644 --- a/build_garden.js +++ b/build_garden.js @@ -325,12 +325,12 @@ ${changes} let fd = fs.openSync("site/changelog/index.md", "w+"); fs.writeSync(fd, `--- -title: Changelog +title: Site Changelog prev: false next: false ---
-

Changelog

+

Site Changelog

This feed starts when I formatted the site to be a Digital Garden. If you'd like to look further into this site's history, check here!

${entries.join("\n\n")} diff --git a/site/.vitepress/config.ts b/site/.vitepress/config.ts index e7a1a511..47a7fdf6 100644 --- a/site/.vitepress/config.ts +++ b/site/.vitepress/config.ts @@ -70,7 +70,7 @@ export default { items: favorites }, { text: "/now", link: "/now" }, - { text: "Changelog", link: "/changelog" } + { text: "Site Changelog", link: "/changelog" } ] }, contentProps: { diff --git a/site/.vitepress/theme/custom.css b/site/.vitepress/theme/custom.css index e245ff41..2460f122 100644 --- a/site/.vitepress/theme/custom.css +++ b/site/.vitepress/theme/custom.css @@ -122,7 +122,7 @@ ul > li > ul::before { padding: 0 32px !important; } -.vp-doc a { +.vp-doc a:not(.u-uid) { color: unset; text-decoration: unset; font-weight: unset; @@ -141,7 +141,7 @@ ul > li > ul::before { box-decoration-break: clone; } -.vp-doc a:hover { +.vp-doc a:not(.u-uid):hover { color: unset; background-image: linear-gradient( to right, @@ -588,3 +588,37 @@ table { p:last-child { margin-bottom: 0 !important; } + +.hero { + width: 60%; + margin: auto; +} + +@property --anim-bg { + syntax: ''; + initial-value: transparent; + inherits: false; +} + +@keyframes vp-nolebase-highlight-targeted-heading-animation { + 0% { + --anim-bg: transparent; + } + + 10%,35% { + --anim-bg: var(--vp-c-brand-soft); + } + + 99% { + --anim-bg: transparent; + } + + to { + --anim-bg: transparent; + } +} + +.VPNolebaseHighlightTargetedHeadingAnimated { + animation: vp-nolebase-highlight-targeted-heading-animation 1.5s ease-in-out; + background: linear-gradient(0deg, var(--anim-bg) 55%, transparent 45%) repeat-x; +} diff --git a/site/git.data.ts b/site/git.data.ts index eb44364c..13568d26 100644 --- a/site/git.data.ts +++ b/site/git.data.ts @@ -22,7 +22,6 @@ export default { ret[e] = `Planted ${firstCommit}.${lastCommit ? ` Last tended to ${lastCommit}.` : ''}`; resolve(); }))); - console.log(ret) // Map pages just like build_garden does ret['site/guide-to-incrementals/index.md'] = ret['site/garden/guide-to-incrementals/index.md']; diff --git a/site/index.md b/site/index.md index b2a0054e..64f1dc77 100644 --- a/site/index.md +++ b/site/index.md @@ -3,8 +3,21 @@ title: Hello! prev: false next: false --- -# Hello! +
+

Hello!

-I'm Anthony, or The Paper Pilot, and I make fun games and tools! +I'm Anthony, or The Paper Pilot, and welcome to my digital garden! - + + + + +I have a variety of interests, from game development to the fediverse to digital gardens themselves! This is a public website collecting all my (public) thoughts and projects all in one place. There are a lot of pages here, that link to each other wiki-style. I suggest starting your browsing with one of the recommended pages that most closely aligns with your own interests :). + +

About me

+ +
+ I'm a software developer living in Dallas, Texas with my wife and baby son. I work at Topaz Labs LLC, where I develop their flagship product Topaz Photo AI. I have many hobbies and interests - check out /now for a list of what I'm currently working on. Reach out to me via my socials or thepaperpilot@incremental.social. +
+ +
diff --git a/site/public/paperpilot.png b/site/public/paperpilot.png index 3194c07c..e0ff50c3 100644 Binary files a/site/public/paperpilot.png and b/site/public/paperpilot.png differ