Skip to content

Commit

Permalink
Merge pull request #40 from sliit-foss/fix/extend-registration-deadline
Browse files Browse the repository at this point in the history
Fix/extend registration deadline
  • Loading branch information
ThulinaWickramasinghe authored Sep 6, 2024
2 parents 004fcf7 + f1a2410 commit 03cdbad
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 5 deletions.
Binary file removed apps/2024/public/assets/images/logos/ghsl.png
Binary file not shown.
58 changes: 58 additions & 0 deletions apps/2024/public/assets/images/sponsors/cncf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/2024/src/components/landing/countdown/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import useCountdown from '@/hooks/countdown';
import TimeItem from './time-item';

const CountDown = () => {
const { days, hours, minutes, seconds } = useCountdown({ targetDate: new Date('September 7, 2024 00:00:00') });
const { days, hours, minutes, seconds } = useCountdown({ targetDate: new Date('September 8, 2024 00:00:00') });

return (
<div className="bg-white text-center rounded-[15px] ">
Expand Down
6 changes: 3 additions & 3 deletions apps/2024/src/components/landing/knowledge-partners/data.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { IFS } from '@/icons';
import { CNCF, IFS } from '@/icons';

export const partners = [
{
name: 'IFS',
logo: IFS
},
{
name: '',
logo: ''
name: 'CNCF',
logo: CNCF
}
];
2 changes: 1 addition & 1 deletion apps/2024/src/components/landing/timeline/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"date": "26 Aug",
"title": "Registration Opening",
"description": "Assemble a team skilled in Bash or other scripting languages and take the first step toward victory. Registrations will be closed on the 7th of September, midnight.",
"description": "Assemble a team skilled in Bash or other scripting languages and take the first step toward victory. Registrations will be closed on the 8th of September, midnight.",
"time": "19:00 IST"
},
{
Expand Down
3 changes: 3 additions & 0 deletions apps/2024/src/icons/cncf.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function CNCF({ className, ...props }) {
return <img src="/assets/images/sponsors/cncf.svg" alt="CNCF logo" className={className} {...props} />;
}
1 change: 1 addition & 0 deletions apps/2024/src/icons/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export { default as FOSS } from './foss';
export { default as Times } from './times';
export { default as Link } from './link';
export { default as IFS } from './ifs';
export { default as CNCF } from './cncf';

0 comments on commit 03cdbad

Please sign in to comment.