Skip to content
Open
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: 1 addition & 0 deletions src/assets/winboat_logo.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/winboat_logo.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import winboat_logo from "../assets/winboat_logo.webp";
import winboat_logo from "../assets/winboat_logo.svg";
import { Icon } from "astro-icon/components";
---

Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import winboat_logo from "../assets/winboat_logo.webp";
import winboat_logo from "../assets/winboat_logo.svg";
---

<header class="flex flex-col lg:flex-row w-full items-center justify-between my-5">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { Icon } from "astro-icon/components";
import winboat_logo from "../assets/winboat_logo.webp";
import winboat_logo from "../assets/winboat_logo.svg";
---

<section id="hero">
Expand Down
2 changes: 1 addition & 1 deletion src/components/OpenSourceAnim.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import winboat_logo from "../assets/winboat_logo.webp";
import winboat_logo from "../assets/winboat_logo.svg";

function arrayTill(n: number) {
return Array.from(Array(n).keys());
Expand Down