garden.canalswans.net/src/pages/about.js

60 lines
2.6 KiB
JavaScript
Raw Permalink Normal View History

2019-12-20 21:54:38 +00:00
import React from 'react'
import Link from 'gatsby-link'
import Layout from "../layouts/layout.js"
2019-12-20 23:14:51 +00:00
import SLink from "../components/SLink";
2019-12-20 21:54:38 +00:00
const IndexPage = () => (
2019-12-21 16:04:50 +00:00
<Layout hideFooter={true}>
2019-12-20 23:14:51 +00:00
<div className="aboutWrapper">
2022-07-19 19:57:27 +00:00
{/*<p>*/}
{/* Canal Swans is a website/wiki/blog maintained by <a href="http://mfowler.info">Max Fowler</a>.*/}
{/*</p>*/}
{/*<p>*/}
{/* index contains writing and poetry.*/}
{/*</p>*/}
{/*<p>*/}
{/* zines was imagined to become a small online store for ordering*/}
{/* physical copies of zines, inspired by <a href="http://www.finnoakes.com/new-products">finn oakes' zine store</a>,*/}
{/* but currently just contains one zine.*/}
{/*</p>*/}
{/*<p>*/}
{/* wiki contains collections of notes, writing and links on various topics.*/}
{/* I wanted to collect research in a way that was more engaged than just*/}
{/* compulsively saving things to are.na channels, but was less polished*/}
{/* than one-time-published pieces of writing. a digital garden of sorts,*/}
{/* and a tribute to serendipity and special interests.*/}
{/*</p>*/}
{/*<p>*/}
{/* misc is for anything that doesn't fit.*/}
{/*</p>*/}
<p>
garden of fragments, writing, notes
</p>
<p>
a tribute to serendipity, special interests and html
</p>
2019-12-20 23:14:51 +00:00
<p>
2022-07-19 19:57:27 +00:00
maintained by <a href="https://mfowler.info">notplants</a>
2019-12-20 23:14:51 +00:00
</p>
{/*<p>*/}
{/* This is a blog for sharing writing, notes, sketches and other fragments.*/}
{/* <span style={{"margin-top": "10px", "display": "block"}}> Maintained by <a href="http://mfowler.info">Max Fowler</a>. </span>*/}
{/*</p>*/}
2020-01-06 04:00:52 +00:00
<div className="aboutLinksWrapper">
<table className="aboutLinks">
2020-01-10 18:52:21 +00:00
<a className="hlink" href="/rss.xml" style={{'margin-right': '20px'}}>rss</a>
2022-01-11 16:34:49 +00:00
<SLink className="hlink" to='https://gaia.chat/mailman/cgi-bin/listinfo/canalswans'>newsletter</SLink>
2021-06-04 08:51:11 +00:00
<SLink className="hlink" to='https://sunbeam.city/@notplants' style={{'margin-left': '20px'}}>fediverse</SLink>
2020-01-06 04:00:52 +00:00
</table>
2019-12-20 23:14:51 +00:00
</div>
2022-09-13 11:31:43 +00:00
<a href="https://webring.xxiivv.com/canalswans" target="_blank" rel="noopener" style={{"margin": "auto", "max-width": "150px", "margin-top": "20px", "display": "block"}}>
<img src="https://webring.xxiivv.com/icon.black.svg" alt="XXIIVV webring" style={{'max-width': "150px", "display": "block"}}/>
<label style={{"max-width:": "150px", "display": "block", "color": "gray"}}>XXIIVV webring</label>
</a>
2019-12-20 21:54:38 +00:00
</div>
</Layout>
)
export default IndexPage