Skip to content

Commit

Permalink
docs: update assets (#231)
Browse files Browse the repository at this point in the history
* docs: update assets

Signed-off-by: Adam Setch <[email protected]>

* docs: update assets

Signed-off-by: Adam Setch <[email protected]>

---------

Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy authored Sep 28, 2024
1 parent dd01c79 commit 0f63290
Show file tree
Hide file tree
Showing 15 changed files with 48 additions and 16 deletions.
Binary file removed src/assets/logos/electron.png
Binary file not shown.
2 changes: 2 additions & 0 deletions src/assets/logos/electron.svg
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 src/assets/logos/github.png
Binary file not shown.
19 changes: 19 additions & 0 deletions src/assets/logos/github.svg
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 src/assets/logos/jest.png
Binary file not shown.
2 changes: 2 additions & 0 deletions src/assets/logos/jest.svg
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 src/assets/logos/react.png
Binary file not shown.
5 changes: 5 additions & 0 deletions src/assets/logos/react.svg
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 src/assets/logos/tailwindcss.png
Binary file not shown.
2 changes: 2 additions & 0 deletions src/assets/logos/tailwindcss.svg
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 src/assets/logos/typescript.png
Binary file not shown.
2 changes: 2 additions & 0 deletions src/assets/logos/typescript.svg
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 src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { siteMetadata } from '~/constants';
import GithubIcon from '../icons/Github.astro';
import GitHubIcon from '../icons/Github.astro';
const { currentPathname } = Astro.props;
const isHomepage = currentPathname === '/';
Expand All @@ -19,7 +19,7 @@ const isHomepage = currentPathname === '/';
aria-label="GitHub Repository"
class="mt-1 mb-4 mx-2 p-1 text-white hover:text-gray-400"
>
<GithubIcon className="w-6" />
<GitHubIcon className="w-6" />
</a>

<div class="my-3">
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navbar.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { siteMetadata } from '~/constants';
import GithubIcon from '../icons/Github.astro';
import GitHubIcon from '../icons/Github.astro';
import Logo from './Logo.astro';
const { currentPathname } = Astro.props;
Expand Down Expand Up @@ -44,7 +44,7 @@ const isHomepage = currentPathname === '/';
href=`https://github.com/${siteMetadata.repo}`
aria-label="GitHub Repository"
>
<GithubIcon className="w-4 h-4" />
<GitHubIcon className="w-6" />
</a>
</li>
</ul>
Expand Down
24 changes: 12 additions & 12 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,33 @@ import SectionRow from '../layouts/SectionRow.astro';
const openSourceLibs = [
{
name: 'Electron',
link: 'https://www.electronjs.org/',
image: import('../assets/logos/electron.png'),
link: 'https://electronjs.org/',
image: import('../assets/logos/electron.svg'),
},
{
name: 'React JS',
link: 'https://reactjs.org/',
image: import('../assets/logos/react.png'),
name: 'React',
link: 'https://react.dev/',
image: import('../assets/logos/react.svg'),
},
{
name: 'Tailwind CSS',
link: 'https://tailwindcss.com/',
image: import('../assets/logos/tailwindcss.png'),
image: import('../assets/logos/tailwindcss.svg'),
},
{
name: 'Jest',
link: 'https://jestjs.io/',
image: import('../assets/logos/jest.png'),
image: import('../assets/logos/jest.svg'),
},
{
name: 'Typescript',
link: 'https://www.typescriptlang.org/',
image: import('../assets/logos/typescript.png'),
link: 'https://typescriptlang.org/',
image: import('../assets/logos/typescript.svg'),
},
{
name: 'GitHub',
link: 'https://www.github.com/',
image: import('../assets/logos/github.png'),
image: import('../assets/logos/github.svg'),
},
];
---
Expand All @@ -44,7 +44,7 @@ const openSourceLibs = [

<SectionRow
title="All your GitHub notifications on your desktop. Nice & Easy."
description="Ever got lost with GitHub notifications? Too many emails? 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. Works with GitHub Cloud and GitHub Enterprise Server. You can even connect **multiple** accounts."
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>"
screenshot={{
path: 'all-read',
alt: 'Screenshot when there are no notifications read',
Expand All @@ -53,7 +53,7 @@ const openSourceLibs = [

<SectionRow
title="It's about your preferences."
description="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. It is not there to interupt your workflow or distract you, you can customize your settings to your preference."
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>"
screenshot={{
path: 'settings',
alt: 'Your Preferences, Settings',
Expand Down

0 comments on commit 0f63290

Please sign in to comment.