2 Commits

Author SHA1 Message Date
6222e3b23d Merge version_3 into main
Merge version_3 into main
2026-02-09 14:00:55 +00:00
f0150fa9de Bob AI: Update the footer to include social media links 2026-02-09 16:00:20 +02:00

View File

@@ -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 Image from "next/image";
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" className="text-background hover:text-primary">
<Image src="/path/to/facebook-icon.svg" alt="Facebook" width={24} height={24} />
</a>
<a href="https://twitter.com" target="_blank" rel="noopener noreferrer" className="text-background hover:text-primary">
<Image src="/path/to/twitter-icon.svg" alt="Twitter" width={24} height={24} />
</a>
<a href="https://instagram.com" target="_blank" rel="noopener noreferrer" className="text-background hover:text-primary">
<Image src="/path/to/instagram-icon.svg" alt="Instagram" width={24} height={24} />
</a>
<a href="https://linkedin.com" target="_blank" rel="noopener noreferrer" className="text-background hover:text-primary">
<Image src="/path/to/linkedin-icon.svg" alt="LinkedIn" width={24} height={24} />
</a>
</div>
</div> </div>
</footer> </footer>
); );