Skip to content

Commit

Permalink
Update site
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Nov 19, 2023
1 parent 444a578 commit 2ea0244
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 18 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: "Release"
on:
# Allow manual
workflow_dispatch:
# use publish even so when goes from draft -> released
# release:
# types: [published]

jobs:
publish-tauri:
Expand Down Expand Up @@ -34,6 +31,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 8
# TODO: Sign windows bins
# - name: import windows certificate
# if: matrix.platform == 'windows-latest'
# env:
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/views/channel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Channel = () => {
return (
<div>
<div className="py-2">
{Object.entries(users).map(([_k, item]) => (
{Object.entries(users).map(([_, item]) => (
<User key={item.id} item={item} />
))}
</div>
Expand Down
Binary file modified apps/web/public/img/on-top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed apps/web/public/img/resouces.png
Binary file not shown.
Binary file added apps/web/public/img/resources.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/web/public/img/transparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/web/public/img/users.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions apps/web/src/components/card.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export interface Props {
const { name, desc } = Astro.props;
---

<div class="border-zinc-800 overflow-hidden pl-6 pt-6 border rounded-2xl p-2 h-96 w-full 2xl:h-96">
<div class="border-zinc-800 object-cover pl-6 pt-6 border rounded-2xl p-2 w-full">
<div class="pb-4 text-2xl font-bold text-white">{name}</div>
<p class="pb-2">{desc}</p>
<p class="pb-4">{desc}</p>
<slot />
</div>
7 changes: 2 additions & 5 deletions apps/web/src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@ const { title } = Astro.props;
<slot />
<style is:global>
:root {
--accent: 136, 58, 234;
--accent-light: 224, 204, 250;
--accent-dark: 49, 10, 101;
--accent-gradient: linear-gradient(
45deg,
rgb(var(--accent)),
rgb(var(--accent-light)) 30%,
rgb(88, 101, 242),
rgb(255, 255, 255),
white 60%
);
}
Expand Down
12 changes: 6 additions & 6 deletions apps/web/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,26 @@ import Footer from "../components/footer.astro";
>, and free voice chat overlay for Discord.
</p>
<div>
<a target="_blank" href="https://github.com/Hacksore/overlayed/releases" class="hover:bg-purple-500 bg-purple-600 p-4 rounded-lg">Download Now</a>
<a target="_blank" href="https://github.com/Hacksore/overlayed/releases" class="hover:bg-primary bg-primary p-4 rounded-lg">Download Now</a>
</div>
<div class="grid md:grid-cols-2 w-full items-center gap-2">
<Card name="User List" desc="See who is in the current voice channel">
<img src="/img/users.png" alt="User List" class="w-full" />
<Card name="User List" desc="See who is talking, muted, and deafened in the current voice channel">
<img src="/img/users.png" alt="User List" />
</Card>
<Card name="Transparent" desc="Crystal clear transparent window">
<Card name="Transparent & Clickthrough" desc="Transparent window that can ignore mouse clicks">
<img src="/img/transparent.png" alt="Transparent" class="w-full" />
</Card>
<Card
name="Always on Top"
desc="Always stays on top so you can continue working"
desc="Always stays on top so you can continue working or gaming"
>
<img src="/img/on-top.png" alt="Always on top" class="w-full" />
</Card>
<Card
name="Blazingly Fast™"
desc="Built with tauri an efficient rust framework"
>
<img src="/img/resouces.png" alt="Lightweight" class="w-full" />
<img src="/img/resources.png" alt="Lightweight" class="w-full" />
</Card>
</div>
</main>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/tailwind.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
theme: {
extend: {
colors: {
primary: "#BD82F9",
primary: "#5865F2",
},
},
},
Expand Down

0 comments on commit 2ea0244

Please sign in to comment.