Craft and publish engaging content in an app built for creators.
NEW
Add LinkedIn version
Cross-post to LinkedIn
Automatically add LinkedIn versions to your posts.
Make it punchier 👊
Typefully
@typefully
We're launching a Command Bar today with great commands and features.
AI ideas and rewrites
Get suggestions, tweet ideas, and rewrites powered by AI.
Turn your tweets & threads into a social blog
Give your content new life with our beautiful, sharable pages. Make it go viral on other platforms too.
+14
Followers
Powerful analytics to grow faster
Easily track your engagement analytics to improve your content and grow faster.
Build in public
Share a recent learning with your followers.
Create engagement
Pose a thought-provoking question.
Never run out of ideas
Get prompts and ideas whenever you write - with examples of popular tweets.
@aaditsh
I think this thread hook could be improved.
@frankdilo
On it 🔥
Share on drafts & leave comments
Write with your teammates and get feedback with comments.
NEW
Easlo
@heyeaslo
Reply with "Notion" to get early access to my new template.
Jaga
@kandros5591
Notion 🙏
DM Sent
Create giveaways with Auto-DMs
Send DMs automatically based on engagement with your tweets.
And much more:
Auto-Split Text in Posts
Thread Finisher
Tweet Numbering
Pin Drafts
Connect Multiple Accounts
Automatic Backups
Dark Mode
Keyboard Shortcuts
Creators love Typefully
120,000+ creators and teams chose Typefully to curate their Twitter presence.
DHH@dhh
This is my new go-to writing environment for Twitter threads.
They've built something wonderfully simple and distraction free with Typefully 😍
Marc Köhlbrugge@marckohlbrugge
Tweeting more with @typefully these days.
🙈 Distraction-free
✍️ Write-only Twitter
🧵 Effortless threads
📈 Actionable metrics
I recommend giving it a shot.
Santiago@svpino
For 24 months, I tried almost a dozen Twitter scheduling tools.
Then I found @typefully, and I've been using it for seven months straight.
When it comes down to the experience of scheduling and long-form content writing, Typefully is in a league of its own.
Luca Rossi ꩜@lucaronin
After trying literally all the major Twitter scheduling tools, I settled with @typefully.
Killer feature to me is the native image editor — unique and super useful 🙏
Queue your content in seconds
Write, schedule and boost your tweets - with no need for extra apps.
Schedule with one click
Queue your post with a single click - or pick a time manually.
Pick the perfect time
Time each post to perfection with Typefully's performance analytics.
Boost your content
Retweet and plug your posts for automated engagement.
Start creating a content queue.
Write once, publish everywhere
We natively support multiple platforms, so that you can expand your reach easily.
Check the analytics that matter
Build your audience with insights that make sense.
Writing prompts & personalized post ideas
Break through writer's block with great ideas and suggestions.
Never run out of ideas
Enjoy daily prompts and ideas to inspire your writing.
Use AI for personalized suggestions
Get inspiration from ideas based on your own past tweets.
Flick through topics
Or skim through curated collections of trending tweets for each topic.
Write, edit, and track tweets together
Write and publish with your teammates and friends.
Share your drafts
Brainstorm and bounce ideas with your teammates.
NEW
@aaditsh
I think this thread hook could be improved.
@frankdilo
On it 🔥
Add comments
Get feedback from coworkers before you hit publish.
Read, Write, Publish
Read, WriteRead
Control user access
Decide who can view, edit, or publish your drafts.
If you are used to Figma, there's a quirk of Framer components that might catch you out.
In Figma, variants can have completely separate layers. But in Framer, each variant contains all the layers from all other variants hidden inside of it.
Let me explain.
Take this accordion component.
There are two states: collapsed and expanded. The expanded state reveals a frame containing the answer.
If we look at the collapsed state we can see that the answer is also a child of this variant - just with the visibility set to hidden.
You can think of components in Framer as big group of layers and each variant is just a configuration of the properties of all those layers.
They are conceptually similar to boolean properties in Figma, where you are just configuring the visibility of a specific layer.
So why does it work like this? I'm not 💯 sure but I think it's for Framer Motion.
It needs to know what all the possible states are to work out how to make layout transitions between them in CSS.
(more details here nan.fyi/magic-motion via @nandafyi)
But here's where things get a little complicated.
Because you can edit layers that belong to other variants from anywhere, Framer links them.
This means you don't have to manually make changes to each variant.
The basic rule is: layers inherit the properties of the variant they were copied from.
If you change a property on the original, that change rolls out to the copy.
Once you override it on the copy, the link is broken for that specific property.
Here's an example.
I added hover variants to each state. If I change the background colour you can see how inheritance works and how you can break it.
You can also relink a property (right click -> reset overrides)
There is a weird exception that catches me out.
If a layer is hidden in the original but visible in the copy any changes you make to the copy will propagate back to the original.
I think this might be to make sure it animates in smoothly but I'm not sure.