Reorganising

This commit is contained in:
Gnarwhal 2024-09-19 05:34:28 +01:00
parent 0b544fc507
commit 24dab2d928
Signed by: Gnarwhal
GPG key ID: 80DB5B37E4C96776
13 changed files with 12 additions and 6 deletions

View file

@ -1,8 +1,8 @@
import type { Metadata } from 'next';
import Image from 'next/image';
import DownloadTTY from './download_tty';
import Content from './content';
import DownloadTTY from './components/download_tty';
import Content from './components/content';
import * as style from './page.css';
import download_image_dark from './download_dark.svg';
import download_image_light from './download_light.svg';
@ -68,7 +68,10 @@ export default async function Page({
<div className={style.download_tty_group}>
{download_ttys.map((text, index) => <DownloadTTY key={index} text={text} />)}
</div>
<Content src={`${root}${path}`} />
<div className={style.wrapper}>
<Content src={`${root}${path}`} />
</div>
</div>
</div>
);