Some checks failed
build-docker-imge / Build the docker container (push) Failing after 1m25s
22 lines
493 B
TypeScript
22 lines
493 B
TypeScript
// import { Link, routes } from '@redwoodjs/router'
|
|
import { Metadata } from '@redwoodjs/web'
|
|
|
|
const AboutPage = () => {
|
|
return (
|
|
<>
|
|
<Metadata title="About" description="About page" />
|
|
|
|
<h1>AboutPage</h1>
|
|
<p>
|
|
Find me inasdf <code>./web/src/pages/AboutPage/AboutPage.tsx</code>
|
|
</p>
|
|
{/*
|
|
My default route is named `about`, link to me with:
|
|
`<Link to={routes.about()}>About</Link>`
|
|
*/}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default AboutPage
|