Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 702249201b | |||
| 80a0c97bde |
@@ -4,6 +4,7 @@ import ButtonTextUnderline from "@/components/button/ButtonTextUnderline";
|
|||||||
import FillWidthText from "@/components/shared/FillWidthText/FillWidthText";
|
import FillWidthText from "@/components/shared/FillWidthText/FillWidthText";
|
||||||
import { ChevronRight } from "lucide-react";
|
import { ChevronRight } from "lucide-react";
|
||||||
import { cls } from "@/lib/utils";
|
import { cls } from "@/lib/utils";
|
||||||
|
import { Facebook, Twitter, Instagram, LinkedIn } from "lucide-react";
|
||||||
|
|
||||||
interface FooterColumn {
|
interface FooterColumn {
|
||||||
items: Array<{
|
items: Array<{
|
||||||
@@ -110,6 +111,21 @@ const FooterLogoEmphasis = ({
|
|||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-4">
|
||||||
|
<a href="https://facebook.com" target="_blank" rel="noopener noreferrer" aria-label="Facebook">
|
||||||
|
<Facebook className="h-6 w-6 text-gray-500 hover:text-gray-700" />
|
||||||
|
</a>
|
||||||
|
<a href="https://twitter.com" target="_blank" rel="noopener noreferrer" aria-label="Twitter">
|
||||||
|
<Twitter className="h-6 w-6 text-gray-500 hover:text-gray-700" />
|
||||||
|
</a>
|
||||||
|
<a href="https://instagram.com" target="_blank" rel="noopener noreferrer" aria-label="Instagram">
|
||||||
|
<Instagram className="h-6 w-6 text-gray-500 hover:text-gray-700" />
|
||||||
|
</a>
|
||||||
|
<a href="https://linkedin.com" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
|
||||||
|
<LinkedIn className="h-6 w-6 text-gray-500 hover:text-gray-700" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user