Skip to content

Commit a47d32b

Browse files
committed
update footer
1 parent b4bb856 commit a47d32b

File tree

2 files changed

+57
-18
lines changed

2 files changed

+57
-18
lines changed

src/components/Footer.module.css

+17
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,20 @@
4343
a.link {
4444
color: var(--color-primary);
4545
}
46+
47+
.logoGroup {
48+
display: flex;
49+
justify-content: center;
50+
align-items: center;
51+
gap: 1rem;
52+
}
53+
54+
.logoGroup img {
55+
width: 100px;
56+
}
57+
58+
.heading {
59+
font-size: 0.6rem;
60+
font-weight: 600;
61+
margin-bottom: -0.2rem;
62+
}

src/components/Footer.tsx

+40-18
Original file line numberDiff line numberDiff line change
@@ -59,24 +59,46 @@ export default function Footer() {
5959
@github
6060
</a>
6161
</p>
62-
<p
63-
style={{
64-
display: "inline-block",
65-
background: "white",
66-
color: "black",
67-
padding: "6px 20px",
68-
borderRadius: 4,
69-
}}
70-
>
71-
<a
72-
href="https://vercel.com/"
73-
target="_blank"
74-
rel="noreferrer"
75-
className={styles.link}
76-
>
77-
Hosted and powered by ▲ <b>Vercel</b>
78-
</a>
79-
</p>
62+
<div>
63+
<p className={styles.heading}>SUPPORTED AND BACKED BY</p>
64+
<div className={styles.logoGroup}>
65+
<a
66+
href="https://www.casinoreviews.net/"
67+
target="_blank"
68+
rel="noopener noreferrer"
69+
>
70+
<img src="/images/casinoreviews.png" alt="Casino Reviews" />
71+
</a>
72+
<p
73+
style={{
74+
display: "inline-block",
75+
background: "white",
76+
color: "black",
77+
padding: "6px 20px",
78+
borderRadius: 4,
79+
}}
80+
>
81+
<a
82+
href="https://vercel.com/"
83+
target="_blank"
84+
rel="noreferrer"
85+
className={styles.link}
86+
>
87+
Powered by ▲ <b>Vercel</b>
88+
</a>
89+
</p>
90+
<a
91+
href="https://www.beekai.com/"
92+
target="_blank"
93+
rel="noopener noreferrer"
94+
>
95+
<img
96+
src="https://www.beekai.com/marketing/logo/horizontal.svg"
97+
alt="BEEKAI Form builder"
98+
/>
99+
</a>
100+
</div>
101+
</div>
80102
</footer>
81103
)
82104
}

0 commit comments

Comments
 (0)