calcom/pages/index.tsx

19 lines
353 B
TypeScript
Raw Normal View History

2021-03-22 13:48:48 +00:00
import Head from 'next/head'
export default function Home() {
return (
<div>
<Head>
<title>Calendso</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="text-center">
<h1 className="text-2xl font-semibold">
Welcome to Calendso!
</h1>
</main>
</div>
)
}