Skip to content

Commit

Permalink
sponsor: add route4me
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhsuresh committed Jul 22, 2024
1 parent a1a69a0 commit 876bbb3
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion app/core/components/SponsorPack.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,67 +7,84 @@ import React from "react"
const sponsors = [
{
name: "Flightcontrol",
altText: "Flightcontrol",
href: "https://www.flightcontrol.dev?ref=blitzjs",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/main/assets/flightcontrol.png",
tier: 1,
cost: 800,
},
{
name: "Fauna",
altText: "Fauna",
href: "https://dashboard.fauna.com/accounts/register?utm_source=BlitzJS&utm_medium=sponsorship&utm_campaign=BlitzJS_Sponsorship_2020",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/canary/assets/Fauna_Logo_Blue.png",
tier: 2,
cost: 500,
},
{
name: "RIT",
altText: "RIT",
href: "https://rit-inc.co.jp/?utm_source=BlitzJS&utm_medium=sponsorship&utm_campaign=BlitzJS_Sponsorship_2021",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/canary/assets/rit_logo.png",
tier: 3,
cost: 250,
},
{
name: "Boostry",
altText: "Boostry",
href: "https://boostry.co.jp/?utm_source=BlitzJS&utm_medium=sponsorship&utm_campaign=BlitzJS_Sponsorship_2021",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/canary/assets/boostry.svg",
tier: 3,
cost: 250,
},
{
name: "Byteflow",
altText: "Byteflow",
href: "https://byteflow.app/?ref=blitzjs",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/main/assets/byteflow.png",
tier: 3,
cost: 250,
},
{
name: "Andreas",
altText: "Andreas",
href: "https://andreas.fyi/",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/canary/assets/andreas.jpg",
tier: 4,
cost: 100,
},
{
name: "MeetKai",
altText: "MeetKai",
href: "https://meetkai.com/?ref=blitzjs_web",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/canary/assets/meetkai.png",
tier: 4,
cost: 100,
},
{
name: "JDLT",
altText: "JDLT",
href: "https://jdlt.co.uk/?ref=blitzjs_web",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/canary/assets/jdlt.png",
tier: 4,
cost: 100,
},
{
name: "Simon Lammes",
altText: "Simon Lammes",
href: "https://github.com/simon-lammes",
imageUrl: "https://avatars.githubusercontent.com/u/46446421?v=4",
tier: 4,
cost: 100,
},
{
name: "Route4Me",
altText: "Route Optimizer and Route Planning Software",
href: "https://route4me.com",
imageUrl: "https://raw.githubusercontent.com/blitz-js/blitz/main/assets/route4me.png",
tier: 4,
cost: 100,
},
]

const pack = {
Expand Down Expand Up @@ -150,7 +167,7 @@ export const SponsorPack = () => {
>
<Image
src={circle.data.imageUrl}
alt={circle.data.name}
alt={circle.data.altText}
layout="fill"
objectFit="contain"
/>
Expand Down

0 comments on commit 876bbb3

Please sign in to comment.