-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
include the PhotoGallery page #15
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: IsaiahA21 <[email protected]>
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
./src/pages/gallery/index.tsx Ive tried resolving the |
@IsaiahA21 Can you try to cherrypick f40a53e into your branch and see if it fixes the vercel build? |
transition={{ delay: 0.5 }} | ||
> | ||
<div className="text-center"> | ||
<p className="text-babyHeading-size·text-white·sm-max:text-regular-font"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im not sure why the color is not white and but black(defualt) instead
import { GetServerSideProps } from "next"; | ||
|
||
export const getServerSideProps: GetServerSideProps = async ({ | ||
req: _req, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be a good idea to use getStaticProp instead of getServerSideProp? I say this because the photoalbum is infrequently updated so getting the images once and serving it each time would make sense to me than retrieving it on every request.
No description provided.