Skip to content

Commit

Permalink
Add projects page
Browse files Browse the repository at this point in the history
  • Loading branch information
devinshoemaker committed Feb 7, 2021
1 parent 75228ce commit bd44b89
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pages/projects.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import Head from 'next/head';
import Layout from '../src/components/Layout';

function Projects() {
return (
<Layout>
<Head>
<title>Projects</title>
<link rel="icon" href="/favicon.ico" />
</Head>

<section>
<h1>Nxtend Nx Plugins</h1>

<p>
<a href="https://nx.dev" target="blank">
Nx
</a>{' '}
is one of my favorite tools to use while developing new projects these
days. It&apos;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.
</p>
<p>
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&apos;m happy to share my work with
the public.
</p>
<p>Here are some of the some of the plugins that I&apos;ve made:</p>
<ul>
<li>Ionic React</li>
<li>Ionic Angular</li>
<li>Capacitor</li>
<li>Firebase</li>
</ul>
<p>
If you would like to check out these plugins, check out the{' '}
<a href="https://nxtend.dev" target="blank">
official website
</a>
.
</p>
</section>
</Layout>
);
}

export default Projects;
1 change: 1 addition & 0 deletions src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ function NavBar() {
<nav className="flex">
<NavBarLink label="Home" href="/" />
<NavBarLink label="Blog" href="/blog" />
<NavBarLink label="Projects" href="/projects" />
<NavBarLink label="About" href="/about" />
</nav>
<div className="flex">
Expand Down

1 comment on commit bd44b89

@vercel
Copy link

@vercel vercel bot commented on bd44b89 Feb 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.