Leaflet Blog in Deno Fresh
1import { Title } from "../components/typography.tsx"; 2import { Head } from "$fresh/runtime.ts"; 3import { Layout } from "../islands/layout.tsx"; 4 5export default function About() { 6 return ( 7 <> 8 <Head> 9 <title>About - knotbin</title> 10 </Head> 11 <Layout> 12 <div class="p-8 pb-20 gap-16 sm:p-20"> 13 <div class="max-w-[600px] mx-auto"> 14 <Title class="font-serif-italic text-`4xl sm:text-5xl lowercase mb-12"> 15 About 16 </Title> 17 18 <div class="prose prose-slate dark:prose-invert space-y-8"> 19 <p> 20 I'm a fifteen year-old developer. I'm experienced in iOS 21 development, and a winner of the 2024 Apple Swift Student 22 Challenge. I'm very interested in decentralized systems and AT 23 Protocol in particular. I love designing and building beautiful 24 interfaces, and learning about amazing systems. 25 </p> 26 27 <p> 28 Currently, I'm working with Spark to build a shortform video 29 platform on the AT Protocol. I'm also working on my own 30 projects, and always thinking about big ideas and small details. 31 </p> 32 </div> 33 </div> 34 </div> 35 </Layout> 36 </> 37 ); 38}