Reorganising
This commit is contained in:
parent
0b544fc507
commit
24dab2d928
13 changed files with 12 additions and 6 deletions
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue