back_end_docker #9

Merged
lucien merged 23 commits from back_end_docker into back_end 2024-12-06 03:36:58 +00:00
3 changed files with 19 additions and 3 deletions
Showing only changes of commit a239d17697 - Show all commits

View file

@ -1,4 +1,9 @@
export default function ClickableLink({url, text}) {
interface ClickableLinkProps {
url:string;
text:string;
}
export default function ClickableLink({url, text}: ClickableLinkProps) {
return (<div>
<a href={url}><button style={{
backgroundColor: "transparent",

View file

@ -1,4 +1,9 @@
export default function LogoButton ({url, logo}) {
interface LogoButtonProps {
url:string;
logo:string
}
export default function LogoButton ({url, logo}: LogoButtonProps) {
return (
<a href={url}><img src={logo}/></a>
)

View file

@ -1,4 +1,10 @@
export default function RoundButton({url, bgcolor, text}) {
interface RoundButtonProps {
url:string;
bgcolor:string;
text:string;
}
export default function RoundButton({url, bgcolor, text}: RoundButtonProps) {
return (<div>
<a href={url}><button style={{
backgroundColor: bgcolor,