From 01753b87b28948d972460f1f12ff4f8ad60b7a53 Mon Sep 17 00:00:00 2001 From: oonyeje Date: Tue, 3 Oct 2023 16:54:41 -0400 Subject: [PATCH] - wip: black background is now fitting content height - pdf file is not loading into page --- components/content/carousel/index.tsx | 4 ++-- lib/navigationContent.tsx | 2 +- pages/_document.tsx | 7 ++----- pages/index.tsx | 2 +- .../Okechi_Onyeje_Resume_Professional_2023.pdf | Bin 5 files changed, 6 insertions(+), 9 deletions(-) rename {assets => public/assets}/Okechi_Onyeje_Resume_Professional_2023.pdf (100%) diff --git a/components/content/carousel/index.tsx b/components/content/carousel/index.tsx index 7deaa05..3cab275 100644 --- a/components/content/carousel/index.tsx +++ b/components/content/carousel/index.tsx @@ -24,11 +24,11 @@ const ContentCarousel = ({ return (
{(currentPageIdx > 0) && setCurrentPageIdx(currentPageIdx - 1)}>} -
+
{portfolioData.title}
{portfolioData.heroImgSrc &&
}
{portfolioData.description}
- {portfolioData.prototypeIframeURL &&
+ {portfolioData.prototypeIframeURL &&
{ diff --git a/pages/index.tsx b/pages/index.tsx index d15522e..61c4a79 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -67,7 +67,7 @@ export default function Home() {
-
+
setShowModal(false)}>X
diff --git a/assets/Okechi_Onyeje_Resume_Professional_2023.pdf b/public/assets/Okechi_Onyeje_Resume_Professional_2023.pdf similarity index 100% rename from assets/Okechi_Onyeje_Resume_Professional_2023.pdf rename to public/assets/Okechi_Onyeje_Resume_Professional_2023.pdf