Skip to content

Commit

Permalink
Fix testimonies
Browse files Browse the repository at this point in the history
  • Loading branch information
pomber committed Mar 24, 2020
1 parent a96a024 commit 651dd00
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
Binary file added src/avatar.addy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/avatar.css-tricks.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/avatar.github.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/avatar.smashing.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 8 additions & 4 deletions src/landing.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import React from "react";
import demoMp4 from "./demo.mp4";
import demoWebm from "./demo.webm";
import smashing from "./avatar.smashing.jpg";
import github from "./avatar.github.jpg";
import addy from "./avatar.addy.jpg";
import cssTricks from "./avatar.css-tricks.jpg";
import { ReactComponent as ChromeLogo } from "./icons/chrome.svg";
import { ReactComponent as FirefoxLogo } from "./icons/firefox.svg";
import { ReactComponent as CliLogo } from "./icons/cli.svg";
Expand Down Expand Up @@ -120,7 +124,7 @@ function Testimonies() {
<Testimony
name="GitHub"
link="https://github.blog/2019-03-01-release-radar-february-2019/#git-history"
avatar="https://pbs.twimg.com/profile_images/1017516299143041024/fLFdcGsl_bigger.jpg"
avatar={github}
>
Git History caught our eye with a beautiful way to tour the history of
a file in a GitHub repo. ... there’s nothing to download and install:
Expand All @@ -130,7 +134,7 @@ function Testimonies() {
<Testimony
name="Smashing Magazine"
link="https://twitter.com/smashingmag/status/1094865325974261761"
avatar="https://pbs.twimg.com/profile_images/1057746497884880898/lyruNAFp_bigger.jpg"
avatar={smashing}
>
Ahh you know when you need to browse your Git history but it takes a
while to find what you are looking for? Git History lets you browse
Expand All @@ -139,15 +143,15 @@ function Testimonies() {
<Testimony
name="CSS-Tricks"
link="https://twitter.com/css/status/1105999990814662656"
avatar="https://pbs.twimg.com/profile_images/1080202898372362240/akqRGyta_bigger.jpg"
avatar={cssTricks}
>
I love little apps like this that copy the URL structure of another
app, so you can replace just the TLD and it does something useful.
</Testimony>
<Testimony
name="Addy Osmani"
link="https://twitter.com/addyosmani/status/1093970927413387264"
avatar="https://pbs.twimg.com/profile_images/1053159168197111808/8eipWrau_bigger.jpg"
avatar={addy}
>
There's something really satisfying about browsing file history with
this timeline UI. It's super nice.
Expand Down

0 comments on commit 651dd00

Please sign in to comment.