해결결

This commit is contained in:
imnyang 2024-12-15 02:59:06 +09:00
commit b185b9afb6
27 changed files with 1998 additions and 120 deletions

View file

@ -1,13 +1,6 @@
import Link from 'next/link';
import Timeline from '../components/Timeline';
export default function Timeline_Page() {
return (
<div style={{ display: 'flex', overflow: 'auto', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', color: 'white', width: '100vw', height: '100vh', background: '#101020' }}>
<div style={{height: '70%', overflow: 'auto'}}>
<Link href='/'>🏠 Back</Link>
<Timeline />
</div>
</div>
);
import { redirect } from 'next/navigation'
export default async function TimelinePage( ) {
redirect('/')
}