Skip to content

Commit

Permalink
feat: update canvas sponsor
Browse files Browse the repository at this point in the history
  • Loading branch information
musubipapi committed Feb 2, 2023
1 parent 750bb52 commit 43d9a4f
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 41 deletions.
1 change: 0 additions & 1 deletion pages/api/add-additional-founders.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export default withIronSessionApiRoute(
return res.status(400).json({});
} else {
const founderData = req.body.additionalFounders;
console.log(founderData);
try {
await db.runTransaction(async (t) => {
const additionalFoundersRef = db
Expand Down
95 changes: 55 additions & 40 deletions pages/ranking.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import Beta from "../public/logos/beta.png";
import SignalFire from "../public/logos/signalfire.png";
import Crunchbase from "../public/logos/crunchbase.png";
import Precursor from "../public/logos/precursor.png";
import Canvas from "../public/logos/canvas.png";

const SHOW_RANKING = true;
const STYLED_HEADER = `
montserrat text-5xl font-semibold sm:my-8 mb-2 sm:mb-0 mb-4
Expand Down Expand Up @@ -51,47 +53,60 @@ export default function CompletedComparisons({ data = [] }) {
>
Thank you to our supporters
</h1>

<div
className="flex items-center justify-center mt-8"
style={{ columnGap: "80px" }}
>
<Image
width="500px"
height="75px"
src={SignalFire}
layout="fixed"
alt="SignalFire"
objectFit="contain"
/>
<Image
src={Crunchbase}
width="500px"
height="150px"
layout="fixed"
alt="Crunchbase"
objectFit="contain"
/>
<div className="px-24 flex items-center justify-center mt-2">
<a href="https://canvasapp.com/?utm_source=founderschoice&utm_medium=sponsorship">
<Image
src={Canvas}
width="500px"
height="160px"
layout="fixed"
alt="Crunchbase"
objectFit="contain"
/>
</a>
</div>
<div
className="flex items-center justify-center"
style={{ columnGap: "15px" }}
>
<Image
src={Precursor}
layout="fixed"
width="500px"
height="150px"
alt="Precursor Ventures"
objectFit="contain"
/>
<Image
src={Beta}
width="500px"
height="150px"
alt="Bloomberg Beta"
objectFit="contain"
/>
<div className="flex items-center justify-center mt-2">
<a href="https://signalfire.com/">
<Image
width="500px"
height="75px"
src={SignalFire}
layout="fixed"
alt="SignalFire"
objectFit="contain"
/>
</a>
<a href="https://www.crunchbase.com/">
<Image
src={Crunchbase}
width="500px"
height="150px"
layout="fixed"
alt="Crunchbase"
objectFit="contain"
/>
</a>
</div>
<div className="flex items-center justify-center">
<a href="https://precursorvc.com/">
<Image
src={Precursor}
layout="fixed"
width="500px"
height="150px"
alt="Precursor Ventures"
objectFit="contain"
/>
</a>
<a href="https://www.bloombergbeta.com/">
<Image
src={Beta}
width="500px"
height="150px"
alt="Bloomberg Beta"
objectFit="contain"
/>
</a>
</div>
<h2 className="raleway text-left sm:text-2xl font-extralight mb-4 sm:mt-20 mt-8 text-md">
We only include firms where we received 25 or more comparisons to
Expand Down
Binary file added public/logos/canvas.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 43d9a4f

Please sign in to comment.