Skip to content

Commit 1677de7

Browse files
committed
Replace Twitter with LinkedIn
1 parent 832cb5a commit 1677de7

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

src/components/Footer.jsx

+15-12
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import Link from 'next/link'
1+
import Link from "next/link";
22

3-
import { Container } from '@/components/Container'
4-
import { Logo } from '@/components/Logo'
5-
import { NavLink } from '@/components/NavLink'
3+
import { Container } from "@/components/Container";
4+
import { Logo } from "@/components/Logo";
5+
import { NavLink } from "@/components/NavLink";
66

77
export function Footer() {
88
return (
@@ -16,21 +16,24 @@ export function Footer() {
1616
<div className="flex flex-col items-center border-t border-slate-400/10 py-10 sm:flex-row-reverse sm:justify-between">
1717
<div className="flex gap-x-6">
1818
<Link
19-
href="https://twitter.com/ratiopbc"
19+
href="https://www.linkedin.com/company/ratiopbc/"
2020
className="group"
21-
aria-label="TaxPal on Twitter"
21+
aria-label="Ratio PBC on LinkedIn"
2222
>
2323
<svg
24-
aria-hidden="true"
24+
viewBox="0 0 256 256"
25+
version="1.1"
2526
className="h-6 w-6 fill-slate-500 group-hover:fill-slate-700"
2627
>
27-
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0 0 22 5.92a8.19 8.19 0 0 1-2.357.646 4.118 4.118 0 0 0 1.804-2.27 8.224 8.224 0 0 1-2.605.996 4.107 4.107 0 0 0-6.993 3.743 11.65 11.65 0 0 1-8.457-4.287 4.106 4.106 0 0 0 1.27 5.477A4.073 4.073 0 0 1 2.8 9.713v.052a4.105 4.105 0 0 0 3.292 4.022 4.093 4.093 0 0 1-1.853.07 4.108 4.108 0 0 0 3.834 2.85A8.233 8.233 0 0 1 2 18.407a11.615 11.615 0 0 0 6.29 1.84" />
28+
<g>
29+
<path d="M218.123122,218.127392 L180.191928,218.127392 L180.191928,158.724263 C180.191928,144.559023 179.939053,126.323993 160.463756,126.323993 C140.707926,126.323993 137.685284,141.757585 137.685284,157.692986 L137.685284,218.123441 L99.7540894,218.123441 L99.7540894,95.9665207 L136.168036,95.9665207 L136.168036,112.660562 L136.677736,112.660562 C144.102746,99.9650027 157.908637,92.3824528 172.605689,92.9280076 C211.050535,92.9280076 218.138927,118.216023 218.138927,151.114151 L218.123122,218.127392 Z M56.9550587,79.2685282 C44.7981969,79.2707099 34.9413443,69.4171797 34.9391618,57.260052 C34.93698,45.1029244 44.7902948,35.2458562 56.9471566,35.2436736 C69.1040185,35.2414916 78.9608713,45.0950217 78.963054,57.2521493 C78.9641017,63.090208 76.6459976,68.6895714 72.5186979,72.8184433 C68.3913982,76.9473153 62.7929898,79.26748 56.9550587,79.2685282 M75.9206558,218.127392 L37.94995,218.127392 L37.94995,95.9665207 L75.9206558,95.9665207 L75.9206558,218.127392 Z M237.033403,0.0182577091 L18.8895249,0.0182577091 C8.57959469,-0.0980923971 0.124827038,8.16056231 -0.001,18.4706066 L-0.001,237.524091 C0.120519052,247.839103 8.57460631,256.105934 18.8895249,255.9977 L237.033403,255.9977 C247.368728,256.125818 255.855922,247.859464 255.999,237.524091 L255.999,18.4548016 C255.851624,8.12438979 247.363742,-0.133792868 237.033403,0.000790807055" />
30+
</g>
2831
</svg>
2932
</Link>
3033
<Link
3134
href="https://github.com/ratiopbc"
3235
className="group"
33-
aria-label="TaxPal on GitHub"
36+
aria-label="Ratio PBC on GitHub"
3437
>
3538
<svg
3639
aria-hidden="true"
@@ -41,11 +44,11 @@ export function Footer() {
4144
</Link>
4245
</div>
4346
<p className="mt-6 text-sm text-slate-500 sm:mt-0">
44-
Copyright &copy; {new Date().getFullYear()} Ratio PBC, Inc. All rights
45-
reserved.
47+
Copyright &copy; {new Date().getFullYear()}{" "}
48+
Ratio PBC, Inc. All rights reserved.
4649
</p>
4750
</div>
4851
</Container>
4952
</footer>
50-
)
53+
);
5154
}

0 commit comments

Comments
 (0)