mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
fix: slack link and BuildKite component (#1681)
Signed-off-by: Wei Hong <zxc37984@gmail.com>
This commit is contained in:
@@ -1,15 +1,28 @@
|
||||
/**
|
||||
* Copyright (c) The OpenTofu Authors
|
||||
* SPDX-License-Identifier: MPL-2.0
|
||||
* Copyright (c) 2023 HashiCorp, Inc.
|
||||
* SPDX-License-Identifier: MPL-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Copyright (c) The OpenTofu Authors
|
||||
* SPDX-License-Identifier: MPL-2.0
|
||||
* Copyright (c) 2023 HashiCorp, Inc.
|
||||
* SPDX-License-Identifier: MPL-2.0
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import BuildKiteSVG from './buildkite.svg'
|
||||
|
||||
export default ({children, color}) => (
|
||||
<p style={{textAlign: "center", padding: "1.5rem"}}><a href={"https://buildkite.com"} style={{display: "block", color: "#fff", textDecoration: "none"}}>
|
||||
Thank you to <BuildKiteSVG style={{maxWidth: "50%", marginLeft: "auto", marginRight: "auto"}}/> for sponsoring the OpenTofu package hosting.
|
||||
</a></p>
|
||||
);
|
||||
const BuildKite = () => {
|
||||
return (
|
||||
<p style={{ textAlign: "center", padding: "1.5rem" }}>
|
||||
<a
|
||||
href={"https://buildkite.com"}
|
||||
style={{ display: "block", color: "#fff", textDecoration: "none" }}
|
||||
>
|
||||
Thank you to{" "}
|
||||
<BuildKiteSVG
|
||||
style={{ maxWidth: "50%", marginLeft: "auto", marginRight: "auto" }}
|
||||
/>{" "}
|
||||
for sponsoring the OpenTofu package hosting.
|
||||
</a>
|
||||
</p>
|
||||
);
|
||||
};
|
||||
|
||||
export default BuildKite;
|
||||
|
||||
Reference in New Issue
Block a user