Betari
42 posts

Betari
@uiby_b
Designing & building websites that are thoughtful and useful | open for projects
Work with me → Katılım Mayıs 2026
113 Takip Edilen13 Takipçiler

Made a draggable puzzle game in @framer using AI Agent 🧩
A few prompts, some tweaks, and now the pieces can move around and snap into place. Really fun way to make an interaction feel more playful.
English

Stay calm or screammmmmmmmmmmm...😎❤
I made my first-ever commission on Framer and that too after @framer 3.0.
I know it's a tiny amount, but c'mon, it's my first sale. 🎉
Template in the comments ⬇

English


OMG, just crossed 100 followers on @Framer 🥹
Can't believe it happened this fast - thank you!
Let's connect → @itsmitadesign" target="_blank" rel="nofollow noopener">framer.com/@itsmitadesign

English

With @framer Agents, I designed, built, launched and packaged one of my largest templates, as part of the 24hr Hackathon ⏰
In just 24 hours, using Agents and connecting Claude Code, I built Selene, a template built for AI SAAS companies.
🔗 Link to submission below
English

Building this website where thoughts can be written, released into the sky, and revisited later, with the help of Framer Agents, so I can join in on the fun ✨
Let me know what you think 🩵 framer.com/community/cont…
English

js
// GSAP animation
gsap.fromTo("#alive-card .skeleton", {
y: -35,
opacity: 0,
scale: 0.88,
rotation: -3
}, {
y: 0,
opacity: 1,
scale: 1,
rotation: 0,
duration: 0.9,
stagger: 0.08, // natural staggered pop
ease: "back.out(1.7)" // bouncy overshoot
});
// Shimmer effect
document.querySelectorAll('#alive-card .skeleton').forEach((el, i) => {
const shimmer = document.createElement('div');
shimmer.className = 'shimmer';
shimmer.style.animation = waveShimmer ${2.2 + i * 0.1}s linear infinite ;
shimmer.style.animationDelay = -${i * 0.2}s ;
el.appendChild(shimmer);
});
English














