From bd44b89f70e648cf0d89e3f2c960ba2c9cb5fc01 Mon Sep 17 00:00:00 2001 From: Devin Shoemaker Date: Sun, 7 Feb 2021 10:58:45 -0600 Subject: [PATCH] Add projects page --- pages/projects.tsx | 49 +++++++++++++++++++++++++++++++++++++++ src/components/NavBar.tsx | 1 + 2 files changed, 50 insertions(+) create mode 100644 pages/projects.tsx diff --git a/pages/projects.tsx b/pages/projects.tsx new file mode 100644 index 0000000..be15985 --- /dev/null +++ b/pages/projects.tsx @@ -0,0 +1,49 @@ +import Head from 'next/head'; +import Layout from '../src/components/Layout'; + +function Projects() { + return ( + + + Projects + + + +
+

Nxtend Nx Plugins

+ +

+ + Nx + {' '} + is one of my favorite tools to use while developing new projects these + days. It's a monorepo toolkit with a plugin architecture that + allows developers to extend the functionality to make generating new + types of applications or configuring new types of tooling very easy. +

+

+ I have spent a lot of time and effort in building several plugins for + Nx, mostly for developing Ionic applications. I started this project + to fill a need that I had, and I'm happy to share my work with + the public. +

+

Here are some of the some of the plugins that I've made:

+
    +
  • Ionic React
  • +
  • Ionic Angular
  • +
  • Capacitor
  • +
  • Firebase
  • +
+

+ If you would like to check out these plugins, check out the{' '} + + official website + + . +

+
+
+ ); +} + +export default Projects; diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx index 622d013..3ec2d37 100644 --- a/src/components/NavBar.tsx +++ b/src/components/NavBar.tsx @@ -13,6 +13,7 @@ function NavBar() {