nuro.dev
nuro.dev copied to clipboard
blog about project
@NuroDev
is it possible to add a feature that redirects to the blog that i created about a project
for example, in your portfolio these are the projects available
and lets assume that you have written a blog about crate-template project in your portfolio. is it possible to direct to that blog by clicking the project card post as in the following picture.
i have found these code in project.tsx, but i dont know what these do can anyone help me ?
<List.Item
actions={[
...(project.post
? [
{
type: ListActionType.LINK,
external: true,
href: project.post,
icon: 'feather:edit-3',
label: `Blog post about ${project.name}`,
} as ListAction,
]
: []),
thanks in advance
Hi @weareallhumans ,
I think it is possible to link them together by just replacing the title with the link to a respective project by assigning them ids.
This is just my thought, i am not sure that if it will work.