From 03af54c29ba3947b46dc8ae67ce19e167f70077e Mon Sep 17 00:00:00 2001 From: "dbitter@anwb.nl" Date: Tue, 13 Aug 2024 15:53:13 +0200 Subject: [PATCH] feat(quiz): add jfall quiz --- pages/jfall-24-quiz-java.js | 67 +++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 pages/jfall-24-quiz-java.js diff --git a/pages/jfall-24-quiz-java.js b/pages/jfall-24-quiz-java.js new file mode 100644 index 00000000..4780fc77 --- /dev/null +++ b/pages/jfall-24-quiz-java.js @@ -0,0 +1,67 @@ +import siteMetadata from '@/data/siteMetadata' +import { PageSEO } from '@/components/SEO' +import HubSpotForm from '@/components/HubspotForm' + +import { useBrandingTheme } from '@/lib/hooks/useBrandingTheme' +import Image from '@/components/Image' + +export async function getStaticProps() { + return { props: { theme: 'beige' } } +} + +export default function DevoxxJava() { + const { theme } = useBrandingTheme() + + return ( + <> + + +
+
+
+
+

+ The iO Java developer quiz +

+
+
+ +
+
+
+

+ Are you a Java developer? Are you a good Java developer? Or a great Java + developer? Go on, show off you skills and win fabulous prizes! +

+

+ There are no tricks, only one correct answer per question. All the given code + compiles and unless specified explicitly, you may assume we are Java/JDK 23. And + it’s a quiz, so “I don’t know” is always the wrong answer. 😉 +

+
+
+
+
+
+ +
+
+
+ +
+
+
+ + ) +}