Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukman-01 committed Jan 28, 2025
1 parent c17c3ad commit 2175422
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 313 deletions.
Empty file.
263 changes: 0 additions & 263 deletions packages/nextjs/app/quiz/datas/IntoDefiQuestions.tsx

This file was deleted.

106 changes: 56 additions & 50 deletions packages/nextjs/app/quiz/datas/quizData.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { questionsExample } from "./questionsExample";
import { DexesQuestions } from "./DexesQuestions";
import { IntroDefiQuestions } from "./IntroDefiQuestions";
import { LendingQuestions } from "./LendingQuestions";
import { OraclesQuestions } from "./OracleQuestions";
import { SecurityQuestions } from "./SecurityQuestions";
import { StableCoinQuestions } from "./StableCoinQuestions";
import { SyntheticsQuestions } from "./SyntheticsQuestions";

export const quizData: {
id: number;
Expand All @@ -12,67 +18,67 @@ export const quizData: {
}[];
}[] = [
{
id: 1,
title: "DeFi Fundamentals",
description:
"Learn the foundations of decentralized finance, including key principles, concepts, and the structure of DeFi protocols like lending, borrowing, and automated market makers.",
image: "/fundamental.jpg",
questions: questionsExample,
id: 1,
title: "DeFi Fundamentals",
description:
"Test your knowledge of the foundational principles and structures of decentralized finance.",
image: "/fundamental.jpg",
questions: IntroDefiQuestions,
},
{
id: 2,
title: "DeFi Contracts",
description:
"Dive into the workings of DeFi contracts, covering topics like smart contract development, yield farming mechanics, and liquidity provisioning strategies.",
image: "/contract.jpg",
questions: [],
id: 2,
title: "DeFi Contracts",
description:
"Assess your understanding of smart contracts and their role in DeFi mechanisms like yield farming and liquidity provision.",
image: "/contract.jpg",
questions: [],
},
{
id: 3,
title: "Lending and Borrowing",
description:
"Gain insights into decentralized lending and borrowing platforms, exploring how interest rates are determined and best practices for leveraging these tools.",
image: "/lend.jpg",
questions: [],
id: 3,
title: "Lending and Borrowing",
description:
"Evaluate your knowledge of decentralized lending and borrowing platforms, including interest rate mechanics and strategies.",
image: "/lend.jpg",
questions: LendingQuestions,
},
{
id: 5,
title: "Oracles",
description:
"Learn how blockchain oracles provide off-chain data to smart contracts, and discover their applications in DeFi, prediction markets, and more.",
image: "/Oracle.jpg",
questions: [],
id: 5,
title: "Oracles",
description:
"Test your understanding of how oracles provide off-chain data to smart contracts and their applications in DeFi.",
image: "/Oracle.jpg",
questions: OraclesQuestions,
},
{
id: 4,
title: "Stablecoins",
description:
"Understand the role of stablecoins in DeFi, their mechanisms for maintaining price stability, and their importance in creating a robust financial ecosystem.",
image: "/stable.jpg",
questions: [],
id: 4,
title: "Stablecoins",
description:
"Assess your grasp of stablecoin mechanics and their role in maintaining price stability within DeFi ecosystems.",
image: "/stable.jpg",
questions: StableCoinQuestions,
},
{
id: 6,
title: "Synthetics and Derivatives",
description:
"Explore synthetic assets and decentralized derivatives, understanding their role in DeFi markets and strategies for leveraging them to mitigate risks.",
image: "/synthetix.jpg",
questions: [],
id: 6,
title: "Synthetics and Derivatives",
description:
"Evaluate your knowledge of synthetic assets and decentralized derivatives within DeFi markets.",
image: "/synthetix.jpg",
questions: SyntheticsQuestions,
},
{
id: 8,
title: "DEXs",
description:
"Master the operation of decentralized exchanges (DEXs), covering automated market makers (AMMs), order books, and strategies for efficient trading.",
image: "/dex.jpg",
questions: [],
id: 8,
title: "DEXs",
description:
"Test your expertise on decentralized exchanges, including AMMs, order books, and trading strategies.",
image: "/dex.jpg",
questions: DexesQuestions,
},
{
id: 7,
title: "DeFi Security",
description:
"Understand the critical importance of security in DeFi, exploring smart contract vulnerabilities, best practices for audits, and how to secure your assets.",
image: "/security.jpg",
questions: [],
id: 7,
title: "DeFi Security",
description:
"Assess your understanding of DeFi security, including smart contract vulnerabilities and asset protection strategies.",
image: "/security.jpg",
questions: SecurityQuestions,
},
];
];

0 comments on commit 2175422

Please sign in to comment.