-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the time delay in fetching job posting (#101)
* Changed the coptyright name to Job Bank with todo comment * Added the vercel.json file with the max duration time * Fixed the time response bug in fetching job posting by manually setting to sort only using the unique ids
- Loading branch information
1 parent
5e24460
commit a05433f
Showing
3 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
export default function Footer() { | ||
//Todo: Add the Business name to the coptyright | ||
return ( | ||
<div | ||
style={{ | ||
padding: '40px 0', | ||
textAlign: 'center', | ||
}}> | ||
Copyright © Videre. All rights reserved. | ||
Copyright © Job Bank. All rights reserved. | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"functions": { | ||
"src/app/api/**/*": { | ||
"maxDuration": 60 | ||
} | ||
} | ||
} |