Use SVG versions of the banner (#521)

This commit is contained in:
Carlos Precioso
2025-10-01 11:06:30 +02:00
committed by GitHub
parent 3f8d012c95
commit fa15f85587
6 changed files with 6 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
src/client/static/open-saas-banner-dark.png
src/client/static/open-saas-banner-light.png
src/client/static/open-saas-banner-dark.svg
src/client/static/open-saas-banner-light.svg
src/landing-page/components/Hero.tsx
src/landing-page/contentSections.ts
src/payment/lemonSqueezy/checkoutUtils.ts

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 115 KiB

View File

@@ -1,6 +1,6 @@
import { Link as WaspRouterLink, routes } from "wasp/client/router";
import openSaasBannerDark from "../../client/static/open-saas-banner-dark.png";
import openSaasBannerLight from "../../client/static/open-saas-banner-light.png";
import openSaasBannerDark from "../../client/static/open-saas-banner-dark.svg";
import openSaasBannerLight from "../../client/static/open-saas-banner-light.svg";
import { Button } from "../../components/ui/button";
export default function Hero() {