Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@
align-items: center;
}

.site-footer {
margin-top: auto;
width: 100%;
padding: 1.5rem 1rem;
text-align: center;
color: #aaa;
font-size: 0.8rem;
}

.brand-logo {
font-size: 2rem;
font-weight: 900;
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ function App() {
</section>
</div>

<footer className="site-footer">
Boka is an educational project built for learning purposes only — not a real service.
</footer>

<RegistrationModal
isOpen={isRegisterModalOpen}
onClose={() => setIsRegisterModalOpen(false)}
Expand Down