From be5dfdfbc0b78e562dae095621d7b92829ef5993 Mon Sep 17 00:00:00 2001 From: adueck Date: Wed, 6 Mar 2024 14:26:42 -0500 Subject: [PATCH] update --- src/pages/projects.js | 118 +++++++++++++++++++++++------------------- 1 file changed, 65 insertions(+), 53 deletions(-) diff --git a/src/pages/projects.js b/src/pages/projects.js index 98ada2a..f08bc6d 100644 --- a/src/pages/projects.js +++ b/src/pages/projects.js @@ -1,48 +1,51 @@ -import React from "react"; -import Layout from "../components/layout"; -import SEO from "../components/seo"; -import aboutBackground from "../assets/images/about-bg.jpg"; +import React from "react" +import Layout from "../components/layout" +import SEO from "../components/seo" +import aboutBackground from "../assets/images/about-bg.jpg" const projects = [ - { - title: "Pashto Grammar", - description: "A Pashto grammar reference with interactive examples and quizzes.", - link: "https://grammar.lingdocs.com", - repo: "https://github.com/lingdocs/pashto-grammar", - playStore: "https://play.google.com/store/apps/details?id=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", - playStore: "https://play.google.com/store/apps/details?id=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", - }, -]; + { + title: "Pashto Grammar", + description: + "A Pashto grammar reference with interactive examples and quizzes.", + link: "https://grammar.lingdocs.com", + repo: "https://github.com/lingdocs/pashto-grammar", + playStore: + "https://play.google.com/store/apps/details?id=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", + playStore: + "https://play.google.com/store/apps/details?id=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: "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", + }, +] const About = ({ location }) => { return ( -
+
@@ -57,21 +60,30 @@ const About = ({ location }) => {
- {projects.map((project) => ( -
- -

{project.title}

-
-
{project.description}
- - {project.playStore &&
- - Get it on Google Play - -
} + {projects.map(project => ( +
+ +

{project.title}

+
+
{project.description}
+
+ Website -{" "} + Source Code
+ {project.playStore && ( +
+ + Get it on Google Play + +
+ )} +
))}
@@ -80,4 +92,4 @@ const About = ({ location }) => { ) } -export default About; +export default About