Skip to content

Commit

Permalink
fix: add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
PupoSDC committed Dec 18, 2023
1 parent 418bf8d commit f607346
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import { Suspense } from "react";
import { useRouter } from "next/router";
import { NoSsr } from "@mui/base";
import { Sheet, Skeleton } from "@mui/joy";
import { TestMaker, useTestProgress } from "@chair-flight/react/containers";
import { BlogPageLayout } from "./_blog-page.layout";

export const meta = {
title: "Introducing Our New 737 Type Rating Theory Question Bank",
linkTitle: "Introducing Our New 737 Type Rating Theory Question Bank",
file: "003-new-737-question-bank",
description: [
"We are thrilled to announce the launch of our latest addition to the question ",
"bank family: the comprehensive 737 Type Rating Theory Question Bank. ",
"",
"With over 300 thoughtfully curated questions, this question bank is designed to ",
"challenge and enhance your understanding of the 737's systems, procedures, and ",
"aircraft limitations.",
].join(""),
tags: ["Content"],
author: "PupoSDC",
isoDate: "2023-08-02T20:00:00.000Z",
};

# Introducing Our New 737 Type Rating Theory Question Bank

We are thrilled to announce the launch of our latest addition to the question
bank family: the comprehensive 737 Type Rating Theory Question Bank.

With over 300 thoughtfully curated questions, this question bank is designed to
challenge and enhance your understanding of the 737's systems, procedures, and
aircraft limitations.

You can create a [new test here](/modules/737/tests/create).

export const InLocoTestMakeer = () => {
const router = useRouter();
const fallback = <Skeleton sx={{ height: 400, position: "initial" }} />

return (

<Sheet sx={{ p: 1, my: 2, height: 600 }}>
<NoSsr fallback={fallback}>
<Suspense fallback={fallback}>
<TestMaker
sx={{ height: "100%" }}
questionBank={"737"}
onSuccessfulTestCreation={(test) => {
router.push(`/modules/737/tests/${test.id}/${test.mode}`);
}}
/>
</Suspense>
</NoSsr>
</Sheet>
); }

<InLocoTestMakeer />

**See you in the skies!**

export default ({ children }) => (
<BlogPageLayout meta={meta}>{children}</BlogPageLayout>
);
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { Suspense } from "react";
import { useRouter } from "next/router";
import { NoSsr } from "@mui/base";
import { default as AirplaneTicketIcon } from "@mui/icons-material/AirplaneTicket";
import { default as FlightTakeoffIcon } from "@mui/icons-material/FlightTakeoff";
import { default as StyleIcon } from "@mui/icons-material/Style";
import { Stack, Link } from "@mui/joy";
import { ModuleSelectionButton } from "@chair-flight/react/components";
import { TestMaker, useTestProgress } from "@chair-flight/react/containers";
import { BlogPageLayout } from "./_blog-page.layout";

export const meta = {
title: "New A320 Question Bank!",
linkTitle: "New A320 Question Bank!",
file: "005-new-a320-question-bank",
description: [
"In order to keep our focus we decided to restructure our application in three ",
"different segments. The main ovjective with this refactor is to allow students",
"on each of the 3 stages of their aeronautical careers a customized experience ",
"without being distracted by contents that are not geared towards them. ",
].join(""),
tags: ["Feature"],
author: "PupoSDC",
isoDate: "2023-12-18T20:00:00.000Z",
};

# New A320 Question Bank!

Today we are adding a new question bank to our application. This time we are
showing some love to all aspiring A320 pilots out there.

<br />

This question bank is based on the official Airbus A320 FCOM and it is
available for free to all our users.

<br />

You can get started here: [A320 Question Bank](/modules/a320)

<br />

**See you in the skies!**

export default ({ children }) => (
<BlogPageLayout meta={meta}>{children}</BlogPageLayout>
);

0 comments on commit f607346

Please sign in to comment.