Adding seo to pages #301
Replies: 1 comment 1 reply
-
import { Head } from "$fresh/runtime.ts";
export default function Page() {
return (
<div>
<Head>
<title>Title can go here</title>
</Head>
<h1>My page</h1>
</div>
);
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lucacasonato
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have not been able to find any information on it so far in the documentation but how can we add seo or even the page title tag.
Beta Was this translation helpful? Give feedback.
All reactions