File size: 248 Bytes
fcd4478
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export default function Page() {
	const content = '<- Select a project from sidebar';
	return (
		<div className="flex flex-col h-[calc(100vh-theme(spacing.16))] items-center justify-center py-10 space-y-2 font-medium">
			{content}
		</div>
	);
}