diff --git a/components/common/Footer.jsx b/components/common/Footer.jsx
index 4b17da7..3189367 100644
--- a/components/common/Footer.jsx
+++ b/components/common/Footer.jsx
@@ -112,7 +112,7 @@ function Footer() {
Copyright © {currentYear}{' '}
- CodeEdit. All rights reserved.
+ CodeEdit. All rights reserved.
{/*
@@ -122,7 +122,7 @@ function Footer() {
Privacy Policy
*/}
- Lincense
+ License
diff --git a/components/pages/home/index.js b/components/pages/home/index.js
index 671d512..75a3f1d 100644
--- a/components/pages/home/index.js
+++ b/components/pages/home/index.js
@@ -10,15 +10,12 @@ import FeaturesSection from './sections/FeaturesSection';
import CtaSection from './sections/CtaSection';
import SampleStorySection from './sections/SampleStorySection';
+import { links } from '@/data/links';
export default function HomePage() {
return (
- {
- window.open('https://github.com/orgs/CodeEditApp/projects/3');
- }}
- >
+ window.open(links.githubProject)}>
CodeEdit is currently in development. Check out the roadmap.
diff --git a/data/navigation.js b/data/navigation.js
index a6f297f..dbdbd44 100644
--- a/data/navigation.js
+++ b/data/navigation.js
@@ -1,3 +1,5 @@
+import { links } from '@/data/links';
+
const navigation = [
{
href: '/',
@@ -20,7 +22,7 @@ const navigation = [
// label: 'Extensions',
// },
{
- href: 'https://github.com/CodeEditApp/CodeEdit',
+ href: links.githubRepo,
label: 'GitHub',
},
];