diff --git a/src/routes/tags/[id].tsx b/src/routes/tags/[id].tsx index 7ba782b..0b9b69a 100644 --- a/src/routes/tags/[id].tsx +++ b/src/routes/tags/[id].tsx @@ -3,6 +3,7 @@ import { type Component, Show } from "solid-js"; import { posts } from "~/data/posts"; import { Posts } from "~/components/Posts"; import { tags } from "~/data/tags"; +import { Title, Meta } from "@solidjs/meta"; /* * Code from andii.dev @@ -11,6 +12,18 @@ const TagId: Component> = (props) => { const tag = () => tags[props.params.id]; return ( No posts with that tag}> + minhtran_dev - Tag: {tag().id} + + + + + + + +

Tag: {tag().id}