-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from gdscustp/dev
Update dependencies and add a workflow on CI/CD pipeline
- Loading branch information
Showing
9 changed files
with
7,462 additions
and
6,098 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Trigger Vercel Deployment | ||
|
||
on: | ||
push: # This will trigger the action on every commit (push) | ||
branches: | ||
- main # You can specify which branch to monitor (e.g., "main" or any other branch) | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Trigger Vercel Deploy | ||
run: curl -X POST "https://api.vercel.com/v1/integrations/deploy/prj_Wlv8UGIoHjqDNr58Y9OaRPDGxg38/YkeQakRRLu" |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,28 +1,29 @@ | ||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
} | ||
|
||
body { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.footer { | ||
display: flex; | ||
color: #ffffff; | ||
width: 100%; | ||
background-color: #212121; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
margin-top: auto; | ||
} | ||
|
||
.lower { | ||
width: 100%; | ||
text-align: center; | ||
padding: 25px 0; | ||
background: #4285F4; | ||
font-weight: 300; | ||
} | ||
|
||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
} | ||
|
||
body { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.footer { | ||
display: flex; | ||
color: #ffffff; | ||
width: 100%; | ||
background-color: #212121; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
margin-top: auto; | ||
} | ||
|
||
.lower { | ||
width: 100%; | ||
text-align: center; | ||
padding: 25px 0; | ||
background: #4285F4; | ||
font-weight: 300; | ||
} |
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,11 @@ | ||
import './footer.css'; | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer className='footer'> | ||
<div className='lower'> | ||
<p>© {new Date().getFullYear()} GDSC USTP. -Univeristy of Science and Technology of Southern Philippines - CDO</p> | ||
</div> | ||
</footer> | ||
); | ||
} | ||
import './footer.css'; | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer className='footer'> | ||
<div className='lower'> | ||
<p>© {new Date().getFullYear()} GDSC USTP. -Univeristy of Science and Technology of Southern Philippines - CDO</p> | ||
</div> | ||
</footer> | ||
); | ||
} |
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