2024-05-13 22:34:06 -05:00
|
|
|
---
|
|
|
|
// Layout
|
|
|
|
import Default from "@layouts/Default.astro";
|
|
|
|
|
|
|
|
// Components
|
|
|
|
import Hero from "@components/Hero.astro";
|
|
|
|
import Heading from "@components/Heading.astro";
|
|
|
|
import Posts from "@components/blog/posts.astro";
|
|
|
|
import LargeCard from "@components/Feature.astro";
|
2024-08-27 00:52:34 -05:00
|
|
|
import {Zorn} from "@minpluto/zorn"
|
2024-05-13 22:34:06 -05:00
|
|
|
|
|
|
|
// List Posts
|
|
|
|
import { getCollection } from "astro:content";
|
|
|
|
const posts = await getCollection("posts");
|
|
|
|
|
|
|
|
// Icons
|
2024-08-27 00:52:34 -05:00
|
|
|
import { BookmarkBook, ReportColumns } from "@iconoir/vue";
|
2024-05-13 22:34:06 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
<Default MobileTitle="SudoVanilla" NoSubHeader>
|
|
|
|
<Fragment slot="body">
|
|
|
|
<Hero
|
|
|
|
Title="SudoVanilla"
|
|
|
|
Description="Counting on the Open Web"
|
2024-08-27 00:52:34 -05:00
|
|
|
UseImage
|
|
|
|
Image="https://images.pexels.com/photos/2026454/pexels-photo-2026454.jpeg"
|
|
|
|
Credit="Spiez, BE, Switzerland. Shot by Tanathip Rattanatum on Pexels."
|
2024-05-13 22:34:06 -05:00
|
|
|
/>
|
|
|
|
<Heading Title="Blog" Description="Tips, Tricks, and Updates">
|
|
|
|
<slot slot="icon">
|
|
|
|
<BookmarkBook width={32} height={32} />
|
|
|
|
</slot>
|
|
|
|
</Heading>
|
|
|
|
<Posts GetPosts={posts} PrefixSlug="/blog/"/>
|
|
|
|
<Heading Title="Projects" Description="What I've Made">
|
|
|
|
<slot slot="icon">
|
|
|
|
<ReportColumns width={32} height={32} />
|
|
|
|
</slot>
|
|
|
|
</Heading>
|
2024-10-19 15:19:13 -05:00
|
|
|
<LargeCard
|
|
|
|
Title="ButterflyVu"
|
|
|
|
Description="Documention Site"
|
|
|
|
Image="https://md.sudovanilla.org/images/pexels-pixabay-326055.jpg"
|
|
|
|
CTA_Primary="Source Code"
|
|
|
|
CTA_Primary_Link="https://ark.sudovanilla.org/Korbs/butterflyvu"
|
|
|
|
CreditImage="Close-up Photo of Glowing Blue Butterflies by Pixabay on Pixels."
|
|
|
|
/>
|
2024-05-13 22:34:06 -05:00
|
|
|
<LargeCard
|
2024-08-23 15:23:04 -05:00
|
|
|
Title="MinPluto"
|
|
|
|
Description="Yet Another YouTube Frontend"
|
|
|
|
Image="https://md.sudovanilla.org/images/mp.webp"
|
|
|
|
CTA_Primary="Source Code"
|
|
|
|
CTA_Primary_Link="https://ark.sudovanilla.org/MinPluto/MinPluto/"
|
2024-05-13 22:34:06 -05:00
|
|
|
/>
|
|
|
|
<LargeCard
|
|
|
|
Title="Zorn Player"
|
2024-08-27 00:52:34 -05:00
|
|
|
Description="Video Player for Astro"
|
|
|
|
Image="https://md.sudovanilla.org/images/Screenshot%20from%202024-08-27%2001-41-34.png"
|
2024-05-13 22:34:06 -05:00
|
|
|
CTA_Primary="Documentation"
|
|
|
|
CTA_Primary_Link="/docs/zorn/introduction/"
|
2024-10-19 15:19:13 -05:00
|
|
|
/>
|
2024-08-23 15:23:04 -05:00
|
|
|
<LargeCard
|
|
|
|
Title="Init Privacy"
|
|
|
|
Description="Taking Back Control"
|
|
|
|
Image="https://md.sudovanilla.org/images/smartmockups_lvh9a29d.jpg"
|
2024-10-19 15:19:13 -05:00
|
|
|
Label="Development Paused"
|
|
|
|
LabelVarient="Warning"
|
2024-08-23 15:23:04 -05:00
|
|
|
CTA_Primary="View"
|
|
|
|
CTA_Primary_Link="/init/"
|
|
|
|
/>
|
2024-05-13 22:34:06 -05:00
|
|
|
<LargeCard
|
|
|
|
Title="Penpot Desktop"
|
|
|
|
Description="A Desktop-Like Experience"
|
2024-05-13 23:22:07 -05:00
|
|
|
Image="https://md.sudovanilla.org/images/Z1.webp"
|
2024-05-23 20:22:22 -05:00
|
|
|
Label="Discontinued"
|
|
|
|
LabelVarient="Warning"
|
2024-05-13 22:34:06 -05:00
|
|
|
CTA_Primary="Documentation"
|
|
|
|
CTA_Primary_Link="/docs/penpot-desktop/introduction/"
|
|
|
|
/>
|
|
|
|
</Fragment>
|
2024-08-28 15:36:38 -05:00
|
|
|
</Default>
|