Skip to content

Commit

Permalink
Update dates for 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteHoodHacker committed Sep 11, 2024
1 parent c04a70b commit 03cb675
Show file tree
Hide file tree
Showing 12 changed files with 1,919 additions and 824 deletions.
2,713 changes: 1,904 additions & 809 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "fallctf-2023-landing-page",
"name": "fallctf-2024-signage",
"version": "0.1.0",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(ctf)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Seo from "@/components/Seo";
import PreloadResources from "./preload-resources";

export const metadata = {
title: "Fall CTF 2023",
title: "Fall CTF 2024",
description: "A CTF by SIGPwny",
};

Expand Down
4 changes: 2 additions & 2 deletions src/app/(new-signage)/cif/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ async function seqFadeIn(scope: any, animate: any, delay: number = 0) {
}

export default function SignagePage() {
const time_start = "2023-09-23T12:00:00-05:00"
const time_close = "2023-09-23T18:00:00-05:00"
const time_start = "2024-09-22T12:00:00-05:00"
const time_close = "2024-09-22T18:00:00-05:00"
const [loaded, setLoaded] = useState(false);
const [scopeHeader, animateScopeHeader] = useAnimate();
const [scopeTimer, animateScopeTimer] = useAnimate();
Expand Down
2 changes: 1 addition & 1 deletion src/app/(new-signage)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "@/styles/fonts.css";
import "./new-signage.css";

export const metadata = {
title: "Fall CTF 2023",
title: "Fall CTF 2024",
description: "A CTF by SIGPwny",
};

Expand Down
4 changes: 2 additions & 2 deletions src/app/(new-signage)/siebel/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ async function seqFadeIn(scope: any, animate: any, delay: number = 0) {
}

export default function SignagePage() {
const time_start = "2023-09-23T12:00:00-05:00"
const time_close = "2023-09-23T18:00:00-05:00"
const time_start = "2024-09-22T12:00:00-05:00"
const time_close = "2024-09-22T18:00:00-05:00"
const [loaded, setLoaded] = useState(false);
const [scopeHeader, animateScopeHeader] = useAnimate();
const [scopeTimer, animateScopeTimer] = useAnimate();
Expand Down
4 changes: 2 additions & 2 deletions src/app/(signage)/eceb/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ async function seqFadeIn(scope: any, animate: any, delay: number = 0) {
}

export default function SignagePage() {
const time_start = "2023-09-23T12:00:00-05:00"
const time_close = "2023-09-23T18:00:00-05:00"
const time_start = "2024-09-22T12:00:00-05:00"
const time_close = "2024-09-22T18:00:00-05:00"
const [loaded, setLoaded] = useState(false);
const [scopeHeader, animateScopeHeader] = useAnimate();
const [scopeTimer, animateScopeTimer] = useAnimate();
Expand Down
4 changes: 2 additions & 2 deletions src/app/(signage)/grainger/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ async function seqFadeIn(scope: any, animate: any, delay: number = 0) {
}

export default function SignagePage() {
const time_start = "2023-09-23T12:00:00-05:00"
const time_close = "2023-09-23T18:00:00-05:00"
const time_start = "2024-09-22T12:00:00-05:00"
const time_close = "2024-09-22T18:00:00-05:00"
const [loaded, setLoaded] = useState(false);
const [scopeHeader, animateScopeHeader] = useAnimate();
const [scopeTimer, animateScopeTimer] = useAnimate();
Expand Down
2 changes: 1 addition & 1 deletion src/app/(signage)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "@/styles/fonts.css";
import "./signage.css";

export const metadata = {
title: "Fall CTF 2023",
title: "Fall CTF 2024",
description: "A CTF by SIGPwny",
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/(site)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "@/styles/fonts.css";
import "@/styles/signage.css";

export const metadata = {
title: "Fall CTF 2023",
title: "Fall CTF 2024",
description: "A CTF by SIGPwny",
};

Expand Down
2 changes: 1 addition & 1 deletion src/components/LogoReveal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { motion, cubicBezier } from "framer-motion";

export default function LogoReveal() {
const string = "Fall CTF 2023";
const string = "Fall CTF 2024";
const text_variant = {
hidden: {},
visible: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/NewLogoReveal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { motion, cubicBezier } from "framer-motion";

export default function LogoReveal() {
const string = "Fall CTF 2023";
const string = "Fall CTF 2024";
const text_variant = {
hidden: {},
visible: {
Expand Down

0 comments on commit 03cb675

Please sign in to comment.