-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Damian Stasik <[email protected]>
- Loading branch information
1 parent
a0fe7a7
commit 0420b07
Showing
4 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Paragraph } from "../Paragraph"; | ||
|
||
export function Footer() { | ||
return ( | ||
<footer className="border-t border-gray-200 bg-gray-50 dark:border-gray-800 dark:bg-blue-950"> | ||
<div className="mx-auto flex w-full max-w-4xl text-balance px-5 py-5 text-center text-sm"> | ||
<Paragraph> | ||
Copyright © OpenTofu a Series of LF Projects, LLC and its | ||
contributors. Documentation materials are licensed under various open | ||
sources license from other authors, see the referenced license files | ||
for details. For web site terms of use, trademark policy, privacy | ||
policy and other project policies please see{" "} | ||
<a | ||
href="https://lfprojects.org/policies" | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
className="underline" | ||
> | ||
lfprojects.org/policies | ||
</a> | ||
. | ||
</Paragraph> | ||
</div> | ||
</footer> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters