2021-11-13 20:26:18 +00:00
|
|
|
import type { NextPage } from "next";
|
|
|
|
import SubPanel from "components/Panels/SubPanel";
|
|
|
|
import NavOption from "components/Panels/NavOption";
|
2021-11-06 16:47:20 +00:00
|
|
|
|
|
|
|
const Chronology: NextPage = () => {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<SubPanel>
|
2021-11-07 19:17:54 +00:00
|
|
|
<h2>Chronology</h2>
|
2021-11-13 20:26:18 +00:00
|
|
|
<p>
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut vulputate
|
|
|
|
facilisis blandit. Aliquam blandit neque sem, ac pulvinar leo
|
|
|
|
ultricies sit amet.
|
|
|
|
</p>
|
2021-11-07 19:17:54 +00:00
|
|
|
<hr />
|
|
|
|
|
2021-11-13 20:26:18 +00:00
|
|
|
<NavOption
|
|
|
|
url="/chronology/timelines"
|
|
|
|
title="Timelines"
|
2021-11-07 19:17:54 +00:00
|
|
|
subtitle="Diagram of how the games connect to each other"
|
|
|
|
border={true}
|
|
|
|
/>
|
|
|
|
|
2021-11-13 20:26:18 +00:00
|
|
|
<NavOption
|
|
|
|
url="/chronology/overview"
|
|
|
|
title="Chronology Overview"
|
2021-11-07 19:17:54 +00:00
|
|
|
subtitle="List of all the events from the main timeline"
|
|
|
|
border={true}
|
|
|
|
/>
|
|
|
|
|
2021-11-13 20:26:18 +00:00
|
|
|
<NavOption
|
|
|
|
url="/chronology/walkthrough"
|
|
|
|
title="Chronology Walkthrough"
|
2021-11-07 19:17:54 +00:00
|
|
|
subtitle="Chronological exploration of the lore and stories"
|
|
|
|
border={true}
|
|
|
|
/>
|
2021-11-06 16:47:20 +00:00
|
|
|
</SubPanel>
|
|
|
|
</>
|
2021-11-13 20:26:18 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
export default Chronology;
|