Files
PIbd-21_Valiulov_I.A._IP/src/components/Footer.jsx
2025-05-19 23:18:46 +04:00

19 lines
731 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export default function Footer() {
return (
<footer className="container mt-auto">
<div className="text-center">
<p>
@ООО ОАО ИП и так далее. Любые лицензии по номеру 78375535378. 4К йоууу
<i className="bi bi-heart ms-2"></i>
<i className="bi bi-star-fill ms-1"></i>
<i className="bi bi-arrow-right ms-1"></i>
</p>
<div>
<i className="bi bi-telegram"> Телеграм</i>
<i className="bi bi-discord ms-1"> Дискорд</i>
</div>
</div>
</footer>
)
}