chore: Add changelog page and update navigation
This commit is contained in:
parent
426b0047e8
commit
876ad15eb0
40
src/app/changelog/page.jsx
Normal file
40
src/app/changelog/page.jsx
Normal 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>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
@ -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;
|
||||||
|
}
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user