Files
upscayl/renderer/pages/about.tsx
Nayam Amarshe 0e1e2d1229 Init
2022-08-02 14:28:24 +05:30

17 lines
334 B
TypeScript

import Link from 'next/link'
import Layout from '../components/Layout'
const AboutPage = () => (
<Layout title="About | Next.js + TypeScript + Electron Example">
<h1>About</h1>
<p>This is the about page</p>
<p>
<Link href="/">
<a>Go home</a>
</Link>
</p>
</Layout>
)
export default AboutPage