From 0483e9f7967c9986e275fb93374e4d7901e8792a Mon Sep 17 00:00:00 2001
From: Matthew Hodgson
Date: Mon, 16 May 2016 18:22:01 +0100
Subject: [PATCH] add some logos & a link to the source
---
site.css | 3 +++
src/components/HomePage.js | 19 ++++++++++++-------
2 files changed, 15 insertions(+), 7 deletions(-)
diff --git a/site.css b/site.css
index 7a2bbf7..e48f4d0 100644
--- a/site.css
+++ b/site.css
@@ -115,6 +115,9 @@ body {
}
.mxt_HomePage_link_logo {
+ vertical-align: top;
+ text-align: center;
+ padding-right: 15px;
}
.mxt_HomePage_link_name {
diff --git a/src/components/HomePage.js b/src/components/HomePage.js
index fe4db1d..a88485b 100644
--- a/src/components/HomePage.js
+++ b/src/components/HomePage.js
@@ -19,7 +19,7 @@ import React from 'react'
var linkable_clients = [
{
name: "Vector",
- logo: "",
+ logo: "img/vector-48px.png",
author: "Vector.im",
homepage: "https://vector.im",
room_url(alias) { return "https://vector.im/beta/#/room/" + alias },
@@ -30,7 +30,7 @@ var linkable_clients = [
},
{
name: "Matrix Console",
- logo: "",
+ logo: "img/console-48px.png",
author: "Matrix.org",
homepage: "https://matrix.org",
room_url(alias) { return "https://matrix.org/beta/#/room/" + alias },
@@ -42,7 +42,7 @@ var linkable_clients = [
var unlinkable_clients = [
{
name: "Weechat",
- logo: "",
+ logo: "img/weechat-48px.png",
author: "Tor Hveem",
homepage: "https://github.com/torhve/weechat-matrix-protocol-script",
maturity: "Late beta",
@@ -52,7 +52,7 @@ var unlinkable_clients = [
},
{
name: "Quaternion",
- logo: "",
+ logo: "img/quaternion-48px.png",
author: "Felix Rohrbach",
homepage: "https://github.com/Fxrh/Quaternion",
maturity: "Late alpha",
@@ -62,7 +62,7 @@ var unlinkable_clients = [
},
{
name: "Tensor",
- logo: "",
+ logo: "img/tensor-48px.png",
author: "David A Roberts",
homepage: "https://github.com/davidar/tensor",
maturity: "Late alpha",
@@ -72,7 +72,7 @@ var unlinkable_clients = [
},
{
name: "Tensor2",
- logo: "",
+ logo: "img/tensor-48px.png",
author: "David A Roberts",
homepage: "https://github.com/davidar/tensor2",
maturity: "Alpha",
@@ -82,7 +82,7 @@ var unlinkable_clients = [
},
{
name: "PTO (Perpetually Talking Online)",
- logo: "",
+ logo: "img/pto-48px.png",
author: "Torrie Fischer",
homepage: "https://pto.im",
//room_url(alias) { return "irc://irc.matrix.org/" + alias },
@@ -390,6 +390,11 @@ export default React.createClass({
essentially a compatibility step in the journey towards
a ubiquitous mx:// URL scheme.
+
+ As with all of Matrix, Matrix.to is released as open source under the terms of
+ the Apache License v2.0 - get the source
+ from Github.
+
);