chore: add initial project setup with Docker and React configuration

This commit is contained in:
ɧσℓσ
2025-10-01 00:48:33 +02:00
commit 251b0afac2
33 changed files with 7772 additions and 0 deletions

43
src/components/Footer.css Normal file
View File

@@ -0,0 +1,43 @@
.footer {
background: var(--primary-dark);
color: var(--white);
padding: 1.5rem 2rem;
margin-top: auto;
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-section {
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-section i {
font-size: 1.2rem;
color: var(--accent);
}
.footer-section p {
margin: 0;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
text-align: center;
}
.footer-section {
justify-content: center;
}
}