heading

Reading time • 1 min


Calling All Developers: Share Your Expertise with the World!

Authors
Name
Matt
Role
Frontend Developer

We want you to contribute to our blog. This image is amusing.

Definitely not written by AI

As developers, we've all been there - stuck on a tricky problem for hours, only to finally figure it out and think "I wish someone had written about this!" Or, we've worked with a new tech that's blown our minds, and we can't wait to share our experience with others.

That's why we're inviting you to start writing blog articles! It's a great way to share your knowledge, showcase your skills, and help others in the dev community. Also makes SEO number go big and marketing Matt like when number go up.

What to Write About

The possibilities are endless, but here are some topic ideas to get you started:

  • Share a problem you encountered and how you overcame it
  • Write about a new technology or framework you've worked with and what you learned
  • Share your experience working on a particularly challenging project
  • Offer tips and best practices for a specific development task or process
  • Showcase a cool feature or functionality you've implemented

Remember, this is completely optional, and we're not looking to add to your workload.

Formatting Options

When writing your blog post, you can use a variety of formatting options to make it engaging and easy to read. You can embed:

Images

Waiting for that special someone ♥

Videos

Code snippets

<script>
	let todos = [] 
	let todos = $state([]); 
	let remaining = $derived(todos.filter(todo => !todo.done).length);

	function addTodo(event) {
		if (event.key !== 'Enter') return;


		todos.push({
			done: false,
			text: event.target.value
		});

		event.target.value = '';
	}
</script>

<input onkeydown={addTodo} />

{#each todos as todo}
	<div>
		<input bind:value={todo.text} />
		<input type="checkbox" bind:checked={todo.done} />
	</div>
{/each}

<p>{remaining} remaining</p>

You can also write #code inline

Check out the formatting options available at https://shiki.style/packages/transformers

Quotes

Having full ownership and autonomy over a range of exciting and challenging projects has really helped me grow as a designer.
Cecilia Lead Product Designer

Iframes

CTAs

This is a call to action

Every 60 seconds in Africa, a minute passes

Buttons

How to Get Started

If you're interested in writing a blog post, simply send me or Lara a message on Slack with your article in markdown format, or even just an idea for a post. We'll work with you to refine your idea, provide feedback, and get your post published.

Don't worry if you're not a seasoned writer – we're here to help you every step of the way. And who knows, you might just find that you enjoy sharing your expertise with the world!

Looking forward to reading your posts!

Date published • July 7, 2034