From 241a72d532822e7f68747a3cab57b5492d97c53a Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Fri, 15 Nov 2024 21:14:06 -0600 Subject: [PATCH] Update meta description --- src/pages/details/[slug]/index.js | 2 ++ src/pages/index.js | 2 +- src/pages/testr.js | 13 ------------- 3 files changed, 3 insertions(+), 14 deletions(-) delete mode 100644 src/pages/testr.js diff --git a/src/pages/details/[slug]/index.js b/src/pages/details/[slug]/index.js index ced21bd..251ee4b 100644 --- a/src/pages/details/[slug]/index.js +++ b/src/pages/details/[slug]/index.js @@ -13,6 +13,8 @@ import axios from 'axios'; import ZapThreadsWrapper from '@/components/ZapThreadsWrapper'; import appConfig from "@/config/appConfig"; +// todo: /decrypt is still being called way too much on this page, need to clean up state management + const Details = () => { const [event, setEvent] = useState(null); const [author, setAuthor] = useState(null); diff --git a/src/pages/index.js b/src/pages/index.js index cd1b1d1..573f1e2 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -10,7 +10,7 @@ export default function Home() { <> PlebDevs - + diff --git a/src/pages/testr.js b/src/pages/testr.js deleted file mode 100644 index 2bcb528..0000000 --- a/src/pages/testr.js +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react'; -import GithubContributionChart from '@/components/charts/GithubContributionChart'; - -const Testr = () => { - return ( -
- -
- ); -}; - -export default Testr; -