nuro.dev icon indicating copy to clipboard operation
nuro.dev copied to clipboard

blog about project

Open usernameisnotavailablechooseanother opened this issue 1 year ago • 1 comments

@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 nuro 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. click

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.

sehgalspandan avatar Oct 05 '23 15:10 sehgalspandan