[READ-ONLY] Mirror of https://github.com/flo-bit/flo-bit.github.io. my personal website, w/ astro, svelte, tailwind, typescript, threlte flo-bit.dev/
portfolio portfolio-website svelte sveltekit tailwind threejs threlte typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

add article

+9 -2
+1 -1
src/lib/components/Photos.svelte
··· 14 14 > 15 15 <img src={image.src} alt={image.alt} class="absolute inset-0 h-full w-full object-cover" loading="lazy"/> 16 16 {#if image.href} 17 - <a href={image.href}> 17 + <a href={image.href} target="_blank"> 18 18 <div class="sr-only">{image.alt}</div> 19 19 <div class="absolute inset-0 rounded-xl"></div> 20 20 </a>
+7
src/lib/components/Posts.svelte
··· 8 8 9 9 const articles: Article[] = [ 10 10 { 11 + title: 'Four free startup ideas for you', 12 + description: 13 + 'Because there\'s not enough startups in this world', 14 + date: '2024-01-15', 15 + href: 'https://flobit.substack.com/p/four-free-startup-ideas-for-you' 16 + }, 17 + { 11 18 title: 'How I use AI for Software Development', 12 19 description: 13 20 'I admit it, I have asked ChatGPT at least 17 times how to center a div!',
+1 -1
src/lib/components/Projects.svelte
··· 116 116 : ''} text-base font-semibold text-zinc-800 dark:text-zinc-100" 117 117 > 118 118 {#if project.link} 119 - <a href={project.link.href}> 119 + <a href={project.link.href} target="_blank"> 120 120 <div 121 121 class="absolute -inset-x-4 -inset-y-6 z-0 scale-95 bg-zinc-50 opacity-0 transition group-hover:scale-100 group-hover:opacity-100 dark:bg-zinc-800/50 sm:-inset-x-6 sm:rounded-2xl" 122 122 />