다시 작업. 디자인도 바꾸고 서버도 바꿈. Co-authored-by: monoid <jaeung@prelude.duckdns.org> Reviewed-on: https://git.prelude.duckdns.org/monoid/ionian/pulls/6
		
			
				
	
	
		
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			258 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			258 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export const NotFoundPage = () => {
 | 
						|
	return (<div className="flex items-center justify-center flex-col box-border h-screen space-y-2">
 | 
						|
				<h2 className="text-6xl">404 Not Found</h2>
 | 
						|
				<p>찾을 수 없음</p>
 | 
						|
			</div>
 | 
						|
	);
 | 
						|
};
 | 
						|
 | 
						|
export default NotFoundPage; |