2024-05-13 22:34:06 -05:00
|
|
|
---
|
|
|
|
// Layout
|
|
|
|
import Default from "@layouts/Default.astro";
|
|
|
|
|
|
|
|
// Components
|
|
|
|
import Hero from "@components/Hero.astro";
|
2024-12-03 23:05:50 -05:00
|
|
|
import { CallToAction } from "@sudovanilla/pandora";
|
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
|
2024-11-19 15:45:17 -05:00
|
|
|
Image="https://md.sudovanilla.org/images/pexels-asphotograpy-94842.jpg"
|
|
|
|
Credit="Green Pine Trees. Shot by AS Photography on Pexels."
|
2024-05-13 22:34:06 -05:00
|
|
|
/>
|
2024-12-03 23:05:50 -05:00
|
|
|
|
|
|
|
<CallToAction
|
|
|
|
Title="Instances"
|
|
|
|
Description="Clients, services, and frontends hosted by SudoVanilla"
|
|
|
|
ImageSource="https://md.sudovanilla.org/images/8108969777692270658741264896182357708404070882901004771113430719.png"
|
|
|
|
ImageAlt="Image"
|
|
|
|
PrimaryActionText="View Instances"
|
|
|
|
PrimaryAction="/instances"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<CallToAction
|
2024-11-29 14:51:20 -05:00
|
|
|
Title="MinPluto"
|
|
|
|
Description="SudoVanilla Studio"
|
2024-12-03 23:05:50 -05:00
|
|
|
ImageSource="https://md.sudovanilla.org/images/mp-ba-1.png"
|
|
|
|
ImageAlt="Image"
|
|
|
|
PrimaryActionText="View Website"
|
|
|
|
PrimaryAction="https://studio.sudovanilla.org/"
|
2024-11-29 14:51:20 -05:00
|
|
|
/>
|
2024-12-03 23:05:50 -05:00
|
|
|
|
|
|
|
<CallToAction
|
2024-11-19 15:45:17 -05:00
|
|
|
Title="Zorn Player"
|
|
|
|
Description="Video Player for Astro"
|
2024-12-03 23:05:50 -05:00
|
|
|
ImageSource="https://md.sudovanilla.org/images/Screenshot From 2024-12-03 22-07-36.png"
|
|
|
|
ImageAlt="Image"
|
|
|
|
PrimaryActionText="Documentation"
|
|
|
|
PrimaryAction="/docs/zorn/introduction/"
|
2024-11-19 15:45:17 -05:00
|
|
|
/>
|
2024-12-03 23:05:50 -05:00
|
|
|
|
|
|
|
<CallToAction
|
2024-10-19 15:19:13 -05:00
|
|
|
Title="ButterflyVu"
|
|
|
|
Description="Documention Site"
|
2024-12-03 23:05:50 -05:00
|
|
|
ImageSource="https://md.sudovanilla.org/images/pexels-pixabay-326055.jpg"
|
|
|
|
ImageAlt="Image"
|
|
|
|
PrimaryActionText="Source Code"
|
|
|
|
PrimaryAction="https://ark.sudovanilla.org/Korbs/butterflyvu"
|
2024-10-19 15:19:13 -05:00
|
|
|
/>
|
2024-12-03 23:05:50 -05:00
|
|
|
|
|
|
|
<CallToAction
|
2024-08-23 15:23:04 -05:00
|
|
|
Title="Init Privacy"
|
|
|
|
Description="Taking Back Control"
|
2024-12-03 23:05:50 -05:00
|
|
|
ImageSource="https://md.sudovanilla.org/images/6560385685.png"
|
|
|
|
ImageAlt="Image"
|
|
|
|
PrimaryActionText="Source Code"
|
|
|
|
PrimaryAction="https://ark.sudovanilla.org/Korbs/butterflyvu"
|
2024-10-19 15:19:13 -05:00
|
|
|
Label="Development Paused"
|
2024-08-23 15:23:04 -05:00
|
|
|
/>
|
2024-12-03 23:05:50 -05:00
|
|
|
|
|
|
|
<CallToAction
|
2024-05-13 22:34:06 -05:00
|
|
|
Title="Penpot Desktop"
|
|
|
|
Description="A Desktop-Like Experience"
|
2024-12-03 23:05:50 -05:00
|
|
|
ImageSource="https://md.sudovanilla.org/images/Z1.webp"
|
|
|
|
ImageAlt="Image"
|
|
|
|
PrimaryActionText="Source Code"
|
|
|
|
PrimaryAction="https://ark.sudovanilla.org/Korbs/butterflyvu"
|
2024-05-23 20:22:22 -05:00
|
|
|
Label="Discontinued"
|
2024-05-13 22:34:06 -05:00
|
|
|
/>
|
|
|
|
</Fragment>
|
2024-11-20 20:09:56 -05:00
|
|
|
</Default>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.posts {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
.card-post {
|
|
|
|
border-radius: 6px;
|
|
|
|
border: 1px var(--border-color) solid;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
&:hover {
|
|
|
|
border-color: var(--border-color-hover);
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 6px 6px 0px 0px;
|
|
|
|
aspect-ratio: 16/9;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
#bg {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: center;
|
|
|
|
opacity: 1;
|
|
|
|
z-index: -1;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
.card-post-content {
|
|
|
|
padding: 12px 16px 32px 16px;
|
|
|
|
backdrop-filter: blur(24px) brightness(0.3);
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 0px 0px 6px 6px;
|
|
|
|
p {
|
|
|
|
margin: 0px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
#date {
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: right;
|
|
|
|
color: gray;
|
|
|
|
font-weight: normal;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
|
|
|
margin: 6px 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|