www/pages/about.tsx

38 lines
2.7 KiB
TypeScript
Raw Normal View History

2021-12-08 03:38:31 +00:00
import ReactMarkdown from 'react-markdown';
2021-12-08 03:38:31 +00:00
import ReadmeMd from '../README.md';
2022-05-15 13:56:45 +00:00
import License from '../LICENSE.txt';
2021-12-08 03:38:31 +00:00
import Layout from '../components/layout';
function AboutPage() {
2021-12-08 03:38:31 +00:00
return (
<Layout >
2021-12-08 03:38:31 +00:00
<section className='block'>
<p>Paul&apos;s Personal Website. I go by <a href='https://github.com/LambdaPaul'>@LambdaPaul</a> on GitHub and <a href='https://x.com/lambda_paul'>@lambda_paul</a> on X/Twitter.</p>
<p>Why did I create this?
The original motivation was to just play with Next.js as it pretty much did the things I wanted web pages to do. But it came at the cost of needless complexity. As I use the JavaScript/ECMAScript/Whatever-you-want-to-call-it-script more and more, I am convinced that it is not a platform worth pursuing because the more complex it gets, the less control I have over what it does and this platform and its users seems to be okay with that sort of loss. I have been instead pivoting toward things that impressed and got me interested in working with computers.</p>
<p>Most services/products are keen on going against what Steph Ango calls <a href='https://stephango.com/file-over-app'>File over app</a>, a philosophy in which you prioritize data over software, and anticipate and embrace the eventual death of software. People instead want subscription services that barely support open formats and sometimes do not support exporting data to commonly used formats. The goal here is to avoid storing artifacts under locations that are easily not accessible, not under my control, and does not lock me out of using it with other software. The only reason I have not completely abandoned this is thanks to my decision to rely on Markdown files alone. Had it been reliant on any cloud software, I would have started over.</p>
2022-09-28 04:01:03 +00:00
<p>Got any questions, concerns, or issues? Contact me via email: <code>lambdapaul [at] pm [dot] me</code>.</p>
2022-05-15 13:56:45 +00:00
</section>
<hr />
<section className='block'>
<p>Source for this site is available on GitHub: <a href='https://github.com/LambdaPaul/www'>https://github.com/LambdaPaul/www</a></p>
2022-05-15 13:56:45 +00:00
<p>Relevant information regarding the source is available on the repo and is also provided below.</p>
2021-12-08 03:38:31 +00:00
</section>
<section className='block'>
2022-05-15 13:56:45 +00:00
<h2>README</h2>
2022-04-28 16:37:12 +00:00
<ReactMarkdown>
{ReadmeMd.replace(/^#{1,5} /g, (s: string) => { return `#${s}` })}
</ReactMarkdown>
2021-12-08 03:38:31 +00:00
</section>
2022-05-15 13:56:45 +00:00
<section className='block'>
<h2>LICENSE</h2>
2022-09-28 04:01:03 +00:00
<pre className='license'>{License}</pre>
</section>
2021-12-08 03:38:31 +00:00
</Layout>
2022-05-15 13:56:45 +00:00
);
2021-12-08 03:38:31 +00:00
}
export default AboutPage;