sudovanilla-website/src/pages/index.astro

74 lines
2.2 KiB
Text
Raw Normal View History

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";
// List Posts
import { getCollection } from "astro:content";
const posts = await getCollection("posts");
// Icons
import { BookmarkBook, ReportColumns } from "iconoir-react";
---
<Default MobileTitle="SudoVanilla" NoSubHeader>
<Fragment slot="body">
<Hero
Title="SudoVanilla"
Description="Counting on the Open Web"
2024-05-13 23:22:07 -05:00
VideoSrc="https://md.sudovanilla.org/videos/mp4/hero.mp4"
VideoPoster="https://md.sudovanilla.org/images/hero-poster.png"
2024-05-13 22:34:06 -05:00
VideoCredit="Drone Footage of Limmernsee in Switzerland by SwissHumanity Stories on Pexels"
/>
<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>
<LargeCard
Title="Init Privacy"
Description="Taking Back Control"
2024-05-13 23:22:07 -05:00
Image="https://md.sudovanilla.org/images/smartmockups_lvh9a29d.jpg"
2024-05-13 22:34:06 -05:00
CTA_Primary="View"
CTA_Primary_Link="/init/"
Label="New"
LabelVarient="New"
/>
<LargeCard
Title="Zorn Player"
Description="HTML5 Web Player"
2024-05-13 23:22:07 -05:00
Image="https://md.sudovanilla.org/images/pl.png"
2024-05-13 22:34:06 -05:00
CTA_Primary="Documentation"
CTA_Primary_Link="/docs/zorn/introduction/"
/>
<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-13 22:34:06 -05:00
CTA_Primary="Documentation"
CTA_Primary_Link="/docs/penpot-desktop/introduction/"
/>
<LargeCard
Title="MinPluto"
Description="Yet Another YouTube Frontend"
2024-05-13 23:22:07 -05:00
Image="https://md.sudovanilla.org/images/mp.webp"
2024-05-13 22:34:06 -05:00
Label="Discontinued"
LabelVarient="Warning"
CTA_Primary="Try Poke"
CTA_Primary_Link="https://poketube.fun/"
/>
</Fragment>
</Default>