This repository was archived by the owner on Mar 25, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 33import { jsx , Box , SystemStyleObject } from "theme-ui" ;
44import * as React from "react" ;
55
6+ import { Link } from "../../Link" ;
67import { IBlogPostMetadata } from "../../BlogPostItem" ;
78
89import formatDate from "../formatDate" ;
@@ -23,7 +24,6 @@ const containerStyle = {
2324 display : "flex" ,
2425 flexDirection : "row" ,
2526 justifyContent : "space-between" ,
26- opacity : "0.5" ,
2727 } ,
2828 ".metadata-container" : {
2929 display : "flex" ,
@@ -32,6 +32,10 @@ const containerStyle = {
3232 ".metadata-label" : {
3333 textTransform : "uppercase" ,
3434 fontSize : "small" ,
35+ opacity : "0.5" ,
36+ } ,
37+ ".date-value" : {
38+ opacity : "0.5" ,
3539 } ,
3640} as SystemStyleObject ;
3741
@@ -54,7 +58,9 @@ const BlogPostHeaderMetadata = ({
5458 < Box className = "bot-row" >
5559 < Box className = "metadata-container authors-container" >
5660 < span className = "metadata-label authors-label" > { authorsLabel } </ span >
57- < span className = "authors-value" > { authorsValue } </ span >
61+ < Link className = "authors-value" href = "/about/company/team" >
62+ { authorsValue }
63+ </ Link >
5864 </ Box >
5965 < Box
6066 className = "metadata-container date-container"
You can’t perform that action at this time.
0 commit comments