You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
589 B

import React from "https://esm.sh/react@17.0.2";
import styled from "https://esm.sh/styled-components";
import config from "../back/config/config.ts";
const ContactTwitter = styled.p`
color: #9e9e9e;
& > a {
color: #ababab;
}
text-shadow: #000 1px 1px 0px;
text-align: center;
margin-top: 40px;
margin-bottom: 35px;
`;
export default function () {
return (
<ContactTwitter>
Twitter:{" "}
<a target="_blank" href={`https://twitter.com/${config.frontend.twitterHandle}`}>
@{config.frontend.twitterHandle}
</a>
</ContactTwitter>
);
}