Skip to content
Closed
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
1 change: 0 additions & 1 deletion pkgs/website/src/assets/architecture-diagram.svg

This file was deleted.

7 changes: 0 additions & 7 deletions pkgs/website/src/assets/edge-worker-logo-dark.svg

This file was deleted.

7 changes: 0 additions & 7 deletions pkgs/website/src/assets/edge-worker-logo-light.svg

This file was deleted.

6 changes: 4 additions & 2 deletions pkgs/website/src/components/PageFrame.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import type { Props } from '@astrojs/starlight/props';
import Default from '@astrojs/starlight/components/PageFrame.astro';
import { LinkButton } from '@astrojs/starlight/components';
import logoDark from '../assets/pgflow-logo-dark.svg';
import logoLight from '../assets/pgflow-logo-light.svg';

const isAuthorPage = Astro.url.pathname.startsWith('/author');
const isLandingPage = Astro.url.pathname === '/';
Expand All @@ -26,8 +28,8 @@ const showFooter = isLandingPage || isAuthorPage;
<div class="footer-left">
<div class="footer-logo">
<a href="/">
<img src="/src/assets/pgflow-logo-dark.svg" alt="" class="logo-dark" />
<img src="/src/assets/pgflow-logo-light.svg" alt="" class="logo-light" />
<img src={logoDark.src} alt="" class="logo-dark" />
<img src={logoLight.src} alt="" class="logo-light" />
<span class="logo-text">pgflow</span>
</a>
</div>
Expand Down
Loading