Skip to content

Commit

Permalink
remove projects for now
Browse files Browse the repository at this point in the history
  • Loading branch information
adase11 committed Oct 6, 2024
1 parent 70f6466 commit 8822e9a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/pages/Projects.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React from 'react';
import { Link } from 'react-router-dom';
import Cell from '../components/Projects/Cell';
import data from '../data/projects';
import Main from '../layouts/Main';

const Projects = () => (
Expand All @@ -12,12 +10,9 @@ const Projects = () => (
<h2>
<Link to="/projects">Projects</Link>
</h2>
<p>A selection of projects that I&apos;m not too ashamed of</p>
<p>Coming soon</p>
</div>
</header>
{data.map((project) => (
<Cell data={project} key={project.title} />
))}
</article>
</Main>
);
Expand Down

0 comments on commit 8822e9a

Please sign in to comment.