Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/videos/september-status/new.webm
Binary file not shown.
Binary file not shown.
Binary file added public/videos/september-status/old.webm
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions public/videos/september-status/txt.mp4
Git LFS file not shown
132 changes: 132 additions & 0 deletions src/components/FlathubWidget.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
---
const {
title = "PixiEditor",
author = "PixiEditor",
description = "Universal node-based 2D editor — pixel art, painting, vector and animation tools in a single interface.",
appUrl = "https://flathub.org/en/apps/net.pixieditor.PixiEditor",
donateUrl = "https://pixieditor.net/download",
iconUrl = "https://dl.flathub.org/repo/appstream/x86_64/icons/128x128/net.pixieditor.PixiEditor.png",
} = Astro.props;
---

<style>
:root {
--card-bg: #1c1c1c; /* slightly lighter purple for card */
--border: #3d3d3d;
--title: #ffffff;
--text: #cbd5e1;
--accent-blue: #4A8FD9; /* install button */
--accent-grey: #6b7280; /* support button */
--radius: 12px;
}

.flathub-card {
width: 380px;
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 16px;
display: flex;
gap: 14px;
align-items: center;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
color: var(--text);
}

.app-icon {
width: 80px;
height: 80px;
border-radius: 16px;
overflow: hidden;
flex-shrink: 0;
padding: 4px;
display: flex;
align-items: center;
justify-content: center;
}

.app-icon img {
width: 100%;
height: 100%;
object-fit: cover;
}

.meta {
flex: 1;
display: flex;
flex-direction: column;
gap: 6px;
min-width: 0;
}

.title {
font-size: 18px;
font-weight: 700;
color: var(--title);
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.author {
font-size: 13px;
margin: 0;
color: var(--text);
}

.desc {
font-size: 13px;
color: var(--text);
margin: 0;
line-height: 1.4;
}

.actions {
margin-top: 8px;
display: flex;
gap: 10px;
flex-wrap: wrap;
}

.btn {
padding: 8px 14px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
cursor: pointer;
border: none;
}

.install {
background: var(--accent-blue);
color: white;
}

.support {
background: var(--accent-grey);
color: white;
}
</style>

<article class="flathub-card">
<div class="app-icon">
<img src={iconUrl} alt={`${title} icon`} />
</div>

<div class="meta">
<h1 class="title">{title}</h1>
<p class="author">od {author}</p>
<p class="desc">{description}</p>

<div class="actions">
<a class="btn install" href={appUrl} target="_blank" rel="noopener noreferrer">Install</a>
<a class="btn support" href={donateUrl} target="_blank" rel="noopener noreferrer">Donate</a>
</div>
</div>
</article>
44 changes: 44 additions & 0 deletions src/components/supportUs/FoundersPackBanner.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
const purchaseUrl = "https://pixieditor.net/download";
---

<div class="banner">
<p>
<strong>PixiEditor</strong> is fully funded by the community - please consider supporting us with the <strong>Founder's Pack</strong>!
</p>
<a href={purchaseUrl} target="_blank" class="button">Support Now</a>
</div>

<style>
.banner {
background: linear-gradient(135deg, #1a1a2e, #2a004f);
border: 1px solid #5f259f;
border-radius: 1rem;
padding: 1.5rem;
margin: 2rem 0;
text-align: center;
color: #e2d7f7;
font-size: 1.1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.banner p {
margin-bottom: 1rem;
}

.button {
background-color: #9b4dff;
color: #fff;
padding: 0.75rem 1.5rem;
border-radius: 0.75rem;
text-decoration: none;
font-weight: 600;
transition: background 0.25s ease, transform 0.25s ease;
display: inline-block;
}

.button:hover {
background-color: #7d38cc;
transform: scale(1.05);
}
</style>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading