We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8cd323 commit 1e0430fCopy full SHA for 1e0430f
src/components/Footer/FooterCopyright.tsx
@@ -1,13 +1,12 @@
1
-"use client";
2
-
3
import Link from "next/link";
4
import React from "react";
5
import styles from "../../styles/components/Footer/FooterCopyright.module.scss";
6
import { FaRegCopyright } from "react-icons/fa";
+import { LINKS } from "../../constants/links";
7
8
const FooterCopyright: React.FC = () => {
9
return (
10
- <Link href="/" className={styles.link}>
+ <Link href={LINKS.opensourceLicense} className={styles.link}>
11
Open Source
12
<span className={styles.copyright}>
13
<FaRegCopyright />
src/constants/links.ts
@@ -0,0 +1,3 @@
+export const LINKS = {
+ opensourceLicense: "https://www.gnu.org/licenses/agpl-3.0.en.html"
+};
0 commit comments