diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 746405a..be1f9f4 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -8,7 +8,8 @@ import { ArticleMeta, getStaticProps as getBlogPage, RenderedArticle } from './p import { useEffect, useState } from 'react'; -var posts = ['index', 'index', 'index']; +// edit this to change the post displayed on the home page and the pinned posts +var posts = ['index']; export default function Home(props: { posts: Array<{ |