Skip to content

Commit 32457b0

Browse files
committed
docs: update v6
Signed-off-by: Adam Setch <[email protected]>
1 parent 0fe7e79 commit 32457b0

File tree

8 files changed

+32
-16
lines changed

8 files changed

+32
-16
lines changed

public/images/social.png

19.9 KB
Loading

src/assets/filters.png

34.2 KB
Loading

src/assets/notifications.png

-51 KB
Loading

src/assets/settings.png

1.76 KB
Loading

src/icons/icons.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,20 @@ export const openSourceLibs: IconDetails[] = [
1616
link: 'https://tailwindcss.com/',
1717
svg: 'tailwindcss',
1818
},
19-
{
20-
name: 'Jest',
21-
link: 'https://jestjs.io/',
22-
svg: 'jest',
23-
},
2419
{
2520
name: 'Typescript',
2621
link: 'https://typescriptlang.org/',
2722
svg: 'typescript',
2823
},
2924
{
3025
name: 'GitHub',
31-
link: 'https://www.github.com/',
26+
link: 'https://github.com/',
27+
svg: 'github',
28+
},
29+
{
30+
name: 'GitHub - Primer Style',
31+
link: 'https://primer.style/',
32+
color: 'text-blue-400',
3233
svg: 'github',
3334
},
3435
];

src/icons/jest.svg

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/pages/index.astro

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,50 @@ import SectionRow from "~/layouts/SectionRow.astro";
1212
<Hero />
1313

1414
<SectionRow
15-
title="All your GitHub notifications on your desktop. Nice & Easy."
16-
description="<p>Ever got lost with GitHub notifications? Too many emails?</p><br /><p>Gitify is all about making your life easier. Sitting on your menu bar, it informs you for any GitHub notifications without being annoying and of course without adverts. It just gets the job done.</p><br /><p>Works with GitHub Cloud and GitHub Enterprise Server. You can even connect multiple accounts.</p>"
15+
title="All your GitHub notifications, right on your desktop."
16+
description="<p>Gitify is all about making your life easier.</p><br /><p>Always visible on your menu bar, Gitify delivers real-time notifications across all your GitHub Cloud or GitHub Enterprise accounts.</p><br /><p>Stay on top of your work, effortlessly.</p>"
1717
screenshot={{
1818
path: "all-read",
1919
alt: "Screenshot when there are no notifications read",
2020
}}
21+
isReversed
22+
isDark
2123
/>
2224

2325
<SectionRow
24-
title="It's about your preferences."
25-
description="<p>Gitify will notify you every time you receive a notification by playing a sound (not an annoying one - it's a promise), showing native mac OS notifications or by just turning its tray icon to green.</p><br /><p>It is not there to interupt your workflow or distract you, you can customize your settings to your preference.</p>"
26+
title="Cut through the noise, focus on what matters."
27+
description="<p>Inbox overflowing?</p><br /><p>Gitify helps you filter notifications so you can quickly zero in on what’s important.</p>"
28+
screenshot={{
29+
path: "filters",
30+
alt: "Screenshot for notification filters",
31+
}}
32+
/>
33+
34+
<SectionRow
35+
title="Your notifications, your way."
36+
description="<p>Gitify gives you full control: show native OS notifications, play a new notification sound (we promise it's not annoying), or change it's appearance.</p><br /><p>It’s designed to keep you informed without interrupting your workflow. Customize it to suit your style.</p>>"
2637
screenshot={{
2738
path: "settings",
28-
alt: "Your Preferences, Settings",
39+
alt: "Screenshot for user preferences, settings",
2940
}}
30-
isDark
3141
isReversed
42+
isDark
3243
/>
3344

3445
<SectionRow
3546
title="Free & Open Source. It's ours."
36-
description="Gitify is based on Electron, React, Tailwind CSS and more awesome open source libraries. Written in Typescript."
47+
description="Gitify is based on Electron, React, Tailwind CSS and more awesome open source libraries.</p><br /><p>Written in Typescript.</p>"
3748
>
3849
<div class="flex flex-wrap justify-center md:max-w-lg mt-12 lg:mt-0">
3950
{
4051
openSourceLibs.map((item) => (
4152
<div class="hover:bg-gitify-icon-hover p-2 m-2 rounded-lg">
42-
<a href={item.link} target="_blank" rel="noopener noreferrer">
53+
<a
54+
href={item.link}
55+
target="_blank"
56+
rel="noopener noreferrer"
57+
class={item.color ?? "text-black"}
58+
>
4359
<Icon
4460
name={item.svg}
4561
title={item.name}

src/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export interface RepoStats {
2727
export interface IconDetails {
2828
name: string;
2929
link: string;
30+
color?: string;
3031
svg: string;
3132
}
3233

0 commit comments

Comments
 (0)