chore: Add changelog page and update navigation

This commit is contained in:
yoosangwook 2024-07-17 11:27:06 +09:00
parent 426b0047e8
commit 876ad15eb0
4 changed files with 48 additions and 1 deletions

View File

@ -0,0 +1,40 @@
'use client'
import Hero from '@/components/Hero'
import {
Table,
TableBody,
TableCell,
TableColumn,
TableHeader,
TableRow,
} from '@nextui-org/react'
export default function changelogPage() {
return (
<>
<Hero title="Change log" />
<div>
<Table isStriped>
<TableHeader>
<TableColumn>DATE</TableColumn>
<TableColumn>NAME</TableColumn>
<TableColumn>CONTENTS</TableColumn>
</TableHeader>
<TableBody>
<TableRow key="2">
<TableCell>2024.07.17</TableCell>
<TableCell>SWYOO</TableCell>
<TableCell>` * README.md 파일 이미지 경로 수정 `</TableCell>
</TableRow>
<TableRow key="1">
<TableCell>2024.07.16</TableCell>
<TableCell>SWYOO</TableCell>
<TableCell>` * 버튼 정리(템플릿 적용) `</TableCell>
</TableRow>
</TableBody>
</Table>
</div>
</>
)
}

View File

@ -31,3 +31,9 @@ body {
text-wrap: balance; text-wrap: balance;
} }
} */ } */
.archivo-black-regular {
font-family: 'Archivo Black', sans-serif;
font-weight: 400;
font-style: normal;
}

View File

@ -9,6 +9,7 @@ export default function Headers() {
</Link> </Link>
<div className="space-x-4 text-xl"> <div className="space-x-4 text-xl">
<Link href="/intro">Intro</Link> <Link href="/intro">Intro</Link>
<Link href="/changelog">Changelog</Link>
<Link href="/roof">Roof</Link> <Link href="/roof">Roof</Link>
<Link href="/roof2">Roof2</Link> <Link href="/roof2">Roof2</Link>
</div> </div>

View File

@ -1,7 +1,7 @@
export default function Hero(props) { export default function Hero(props) {
return ( return (
<div className="pt-48 flex justify-center"> <div className="pt-48 flex justify-center">
<h1 className="text-6xl">{props.title}</h1> <h1 className="text-6xl archivo-black-regular">{props.title}</h1>
</div> </div>
) )
} }