Nachhilfesystem24/web/src/pages/AboutPage/AboutPage.tsx
KoCoder 9d72e3443b
Some checks failed
build-docker-imge / Build the docker container (push) Failing after 1m25s
Bulk-commit
2024-10-26 08:43:37 +02:00

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