onedrive/pages/index.tsx
2021-06-22 13:17:15 +01:00

20 lines
404 B
TypeScript

import Head from 'next/head'
import Image from 'next/image'
export default function Home() {
return (
<div>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
OneDrive Vercel Index
</main>
<footer></footer>
</div>
)
}