diff --git a/src/components/inline-word/InlineWord.jsx b/src/components/inline-word/InlineWord.jsx
index 69ab57d..939e926 100644
--- a/src/components/inline-word/InlineWord.jsx
+++ b/src/components/inline-word/InlineWord.jsx
@@ -1,6 +1,6 @@
import React from "react";
-export default function({ w }) {
+function InlineWord({ w }) {
return (
{w.p}
@@ -9,4 +9,6 @@ export default function({ w }) {
{w.e && <> ({w.e})>}
);
-};
\ No newline at end of file
+};
+
+export default InlineWord;
\ No newline at end of file
diff --git a/src/pages/projects.js b/src/pages/projects.js
index 7394d13..23da835 100644
--- a/src/pages/projects.js
+++ b/src/pages/projects.js
@@ -8,26 +8,31 @@ const projects = [
title: "Pashto Grammar",
description: "A Pashto grammar reference. This is extremely new and only in the very beginning stages.",
link: "https://grammar.lingdocs.com",
+ repo: "https://github.com/lingdocs/pashto-grammar",
},
{
title: "Pashto Dictionary",
description: "A Pashto dicitionary with smart-search and inflection/conjugation",
link: "https://dictionary.lingdocs.com",
+ repo: "https://github.com/lingdocs/pashto-dictionary"
},
{
title: "Pashto Inflector",
description: "An open source TypeScript/React library for Pashto inflection, verb conjugation, phrase generation, text conversion, and more.",
link: "https://pashto-inflector.lingdocs.com",
+ repo: "https://github.com/lingdocs/pashto-inflector",
},
{
title: "Pashtoodle",
description: "A Pashto version of the well-loved word guessing game",
link: "https://pashtoodle.lingdocs.com",
+ repo: "https://github.com/lingdocs/pashto-wordle",
},
{
title: "RTL EPUB Maker",
description: "Easily create EPUB e-book files with proper RTL support. Because right-to-left languages deserve nice e-books too.",
link: "https://rtl-epub-maker.lingdocs.com",
+ repo: "https://github.com/lingdocs/rtl-epub-maker",
},
];
@@ -56,7 +61,10 @@ const About = ({ location }) => {
{project.title}
-
{project.description}
+