Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a16be0b8a1 | |||
| 3df6e46ae5 |
@@ -3,6 +3,7 @@
|
|||||||
import ButtonTextUnderline from "@/components/button/ButtonTextUnderline";
|
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 { Facebook, Instagram, Twitter } from "lucide-react";
|
||||||
import { cls } from "@/lib/utils";
|
import { cls } from "@/lib/utils";
|
||||||
|
|
||||||
interface FooterColumn {
|
interface FooterColumn {
|
||||||
@@ -110,6 +111,18 @@ const FooterLogoEmphasis = ({
|
|||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div className="flex gap-4">
|
||||||
|
<a href="https://facebook.com" target="_blank" rel="noopener noreferrer" className="text-background hover:text-primary">
|
||||||
|
<Facebook className="h-6 w-6" />
|
||||||
|
</a>
|
||||||
|
<a href="https://instagram.com" target="_blank" rel="noopener noreferrer" className="text-background hover:text-primary">
|
||||||
|
<Instagram className="h-6 w-6" />
|
||||||
|
</a>
|
||||||
|
<a href="https://twitter.com" target="_blank" rel="noopener noreferrer" className="text-background hover:text-primary">
|
||||||
|
<Twitter className="h-6 w-6" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user