diff --git a/pages/[category]/index.tsx b/pages/[category]/index.tsx deleted file mode 100644 index a42023a..0000000 --- a/pages/[category]/index.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import { NextPage, NextPageContext } from "next" -import Link from 'next/link' -import Post from "../../components/Post" -// import posts from '../../posts/pages.json' -// import firstline from 'firstline' -// import 'fs' - -interface Props { - files: fileInformations[] -} - -interface fileInformations { - title: string - slug: string -} - -const PortfolioIndex: NextPage = (props: Props) => { - - const el: JSX.Element[] = [] - for (const post of props.files) { - el.push( - ) - } - - return ( - - - ) -} - -PortfolioIndex.getInitialProps = async (context: NextPageContext) => { - const arr: fileInformations[] = [] - for (const post of await Post.fetchAll()) { - if (!post.isStarted) await post.fetch() - arr.push({ - slug: post.slug.replace(".md", ""), - title: post.title - }) - } - return {files: arr} -} - -export default PortfolioIndex