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