Skip to content

Commit 39bd40d

Browse files
committed
feat: add dev.to social link to footer
1 parent dec8a00 commit 39bd40d

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

app/components/Footer.tsx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const GITHUB_REPO = "https://github.com/kOaDT/oss-oopssec-store";
55
const GITHUB_ISSUES = `${GITHUB_REPO}/issues`;
66
const GITHUB_DISCUSSIONS = `${GITHUB_REPO}/discussions`;
77
const GITHUB_ROADMAP = "https://github.com/users/kOaDT/projects/3";
8+
const DEV_TO_URL = "https://dev.to/oopssec-store";
89

910
export default function Footer() {
1011
return (
@@ -28,7 +29,7 @@ export default function Footer() {
2829
aria-label="GitHub Repository"
2930
>
3031
<svg
31-
className="h-5 w-5"
32+
className="h-6 w-6"
3233
fill="currentColor"
3334
viewBox="0 0 24 24"
3435
>
@@ -39,6 +40,21 @@ export default function Footer() {
3940
/>
4041
</svg>
4142
</a>
43+
<a
44+
href={DEV_TO_URL}
45+
target="_blank"
46+
rel="noopener noreferrer"
47+
className="text-slate-400 transition-colors hover:text-primary-600 dark:hover:text-primary-400"
48+
aria-label="DEV Community Profile"
49+
>
50+
<svg
51+
className="h-6 w-6"
52+
fill="currentColor"
53+
viewBox="0 0 24 24"
54+
>
55+
<path d="M7.826 10.083a.784.784 0 0 0-.468-.175h-.701v4.198h.701a.786.786 0 0 0 .469-.175c.155-.117.233-.292.233-.525v-2.798c.001-.233-.079-.408-.234-.525zM19.236 3H4.764C3.79 3 3.001 3.787 3 4.76v14.48c.001.973.79 1.76 1.764 1.76h14.473c.974 0 1.762-.787 1.763-1.76V4.76A1.765 1.765 0 0 0 19.236 3zM9.195 13.414c0 .755-.466 1.901-1.942 1.898H5.389V8.665h1.903c1.424 0 1.902 1.144 1.903 1.899v2.85zm4.045-3.562H11.1v1.544h1.309v1.188H11.1v1.543h2.142v1.188h-2.498a.813.813 0 0 1-.833-.792V9.497a.813.813 0 0 1 .792-.832h2.539l-.002 1.187zm4.165 4.632c-.531 1.235-1.481.99-1.906 0l-1.548-5.818h1.309l1.193 4.569 1.188-4.569h1.31l-1.546 5.818z" />
56+
</svg>
57+
</a>
4258
</div>
4359
</div>
4460

0 commit comments

Comments
 (0)