feat(website): added discord link

This commit is contained in:
Stan Girard 2023-05-16 23:03:02 +02:00
parent adfb2c75cb
commit a67ea4f165
2 changed files with 13 additions and 2 deletions

View File

@ -43,6 +43,17 @@ export default function Home() {
</h2>
<p>Follow us on Twitter for updates.</p>
</a>
<a
href="https://discord.gg/HUpRgp2HG8"
className={styles.card}
target="_blank"
rel="noopener noreferrer"
>
<h2>
Discord <span>-&gt;</span>
</h2>
<p>Join the discussion on Discord</p>
</a>
</div>

View File

@ -199,7 +199,7 @@
/* Tablet and Smaller Desktop */
@media (min-width: 701px) and (max-width: 1120px) {
.grid {
grid-template-columns: repeat(2, 50%);
grid-template-columns: repeat(3, 1fr);
}
}
@ -231,6 +231,6 @@
/* Tablet and up */
@media (min-width: 701px) {
.grid {
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(3, 1fr);
}
}