updated roadmap

This commit is contained in:
William Grant 2022-03-24 15:34:44 +11:00
parent f63948d951
commit 6e3c151ba9
9 changed files with 12 additions and 57 deletions

View File

@ -59,7 +59,7 @@ const SIDE_MENU_ITEMS = {
},
[SideMenuItem.ROADMAP]: {
id: 8,
label: "Oxen's 2021 roadmap",
label: "Oxen's 2022 roadmap",
href: '/roadmap',
hasOwnRoute: true,
},

View File

@ -3,80 +3,35 @@ import { METADATA, NAVIGATION } from '@/constants';
import CustomHead from '@/components/CustomHead';
import Image from 'next/image';
import { SideMenuItem } from '@/state/navigation';
import { useMeasure } from 'react-use';
import classNames from 'classnames';
function Roadmap() {
const [ref, { width, height }] = useMeasure();
const aspectRatio = width / height;
// Control the aspect ratio of the page images
const horizontal = width > 600 && aspectRatio > 0.65;
console.log('roadmap ➡️ horizontal:', horizontal);
console.log('roadmap ➡️ height:', height);
console.log('roadmap ➡️ width:', width);
console.log('roadmap ➡️ ratio:', aspectRatio);
return (
<>
<CustomHead
title={NAVIGATION.SIDE_MENU_ITEMS[SideMenuItem.ROADMAP].label}
metadata={METADATA.ROADMAP_PAGE}
/>
<div className="mx-4">
<div className="flex items-center justify-center mt-8">
<div className="relative w-full" style={{ height: '90%' }}>
<Image
src={`/img/roadmap-${horizontal ? 'x' : 'y'}.png`}
alt="Oxen's Roadmap and Plans for the future."
width={horizontal ? '1920' : '700'}
height={horizontal ? '1009' : '1615'}
layout="responsive"
quality={100}
priority={true}
/>
</div>
</div>
</div>
<div ref={ref} className="w-full h-full">
<div className="w-full h-full">
<div className="flex flex-col px-6 pb-6 space-y-10">
<div>
<h2 className="mt-6 mb-3 text-3xl font-medium text-center tablet:text-4xl font-prompt text-primary">
Session in 2021
Oxen in 2022
</h2>
<div
className="relative w-full"
style={{ height: horizontal ? '90%' : 'auto' }}
className={classNames(
'relative w-full mx-auto',
'desktop:max-w-3xl',
)}
>
<Image
src={`/img/session-${horizontal ? 'x' : 'y'}.jpg`}
alt="Session's Roadmap and Plans for the future."
width={horizontal ? '17138' : '4688'}
height={horizontal ? '9992' : '12009'}
src={`/img/roadmap.webp`}
alt="Oxen's Roadmap and Plans for the future."
width={1920}
height={3528}
layout="responsive"
quality={100}
priority={true}
className="rounded-md"
/>
</div>
</div>
<div>
<h2 className="mt-6 mb-3 text-3xl font-medium text-center tablet:text-4xl font-prompt text-primary">
Lokinet in 2021
</h2>
<div className="relative w-full" style={{ height: '90%' }}>
<Image
src={`/img/lokinet-${horizontal ? 'x' : 'y'}.png`}
alt="Lokinet's Roadmap and Plans for the future."
width={horizontal ? '8003' : '4688'}
height={horizontal ? '3808' : '10150'}
layout="responsive"
quality={100}
priority={true}
className="rounded-md"
/>
</div>
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

BIN
public/img/roadmap.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 KiB