Save and publish your card by signing in or creating a free account.
Profile
JPG, PNG, WebP · max 5 MB · auto-cropped square
0/60
0/160
Use **bold** for emphasis · Enter for line break
0/300
/
Color — or search for a photo below
Links
Socials
Portfolio
Links to your work appear on the back of the card. Toggle the switch to enable the flip.
0/240
SEO & Sharing
JPG, PNG, WebP · max 5 MB · cropped to 1200×630
Alpha software. Provided as-is with no warranty, express or implied. Features may change or be removed at any time without notice. Not intended for critical use.
This will permanently delete your page and free up your link. Type DELETE to confirm.
biography.now
Welcome back
Sign in to save and publish your card
or
Don't have an account?
⚠️ Please verify your email address before publishing. Check your inbox for a verification link.
👋
Welcome to biography.now
Build your link-in-bio card in under two minutes. We'll walk you through it.
✏️
Tell us about yourself
Add your name and a short bio in the Profile section on the left. Your photo and title go there too.
💡 Tip: Keep your bio to 1–2 sentences. Clear beats clever.
🔗
Add your links
Scroll down to Links and add your website, social profiles, or anything you want people to find.
💡 Tip: You can drag links to reorder them. Put your most important one first.
🚀
Create a free account
Sign up to save and publish your card. It's free — no credit card required.
⚠️
Delete your account
This will permanently delete your account, your published card, and all associated data. This cannot be undone.
What gets deleted: Your profile, published card, slug reservation, and view data. Your email address will be permanently removed from our system.
biography.now Pro
Everything in Free, plus the tools to make it truly yours.
Pro is coming soonWe're finishing up. Check back shortly.
Custom domainHost your card at yourname.com
Remove biography.now brandingYour card, your brand — no footer attribution
Priority supportGet help from the team directly
Advanced analyticsLink click tracking, referrer data — coming soon
Cancel anytime · Secure payment via Stripe · Questions? Email us
Coming Soon
biography.now NFC Card
$29.99
one-time
Pre-programmed for youTapped to your biography.now URL right out of the box — no setup needed
1 year of Pro includedCustom domain, analytics, and more — free for a year, then $19.99/year
Tap to share, instantlyWorks with any modern iPhone or Android — no app required
Update your page anytimeChange your links whenever — the card always points to your latest page
We'll let you know the moment orders open.
Choose an icon
Generic
Brands
We use Google Sign-in and store your profile data (name, photo, links) in Firebase on Google Cloud servers. We don't sell your data or use it for advertising. Privacy Policy
Privacy Policy
Kunesh Consulting NY LLC — biography.now
1
What we collect When you create a page: your name, biography, photo, links, and social URLs — all entered by you. When you sign in: your Google account name, email address, and profile photo.
2
How it's stored Your data is stored in Firebase Firestore, a Google Cloud service, in the United States. Firebase is a Google product subject to Google's privacy policies and EU Standard Contractual Clauses.
3
How it's used Your data is used solely to display your public biography page. It is not sold, shared with third parties, or used for advertising.
4
Cookies & storage Firebase Authentication stores a session token in your browser's local storage to keep you signed in. No tracking cookies or analytics are used.
5
Your rights (GDPR) You have the right to access, correct, or delete your data at any time. Use the Delete button in the builder to permanently erase your page and free your link. To request account deletion or a data export, email hello@kuneshconsulting.com.
6
Data retention Your data is retained until you delete it. Signing out does not delete your data.
2In your project, go to Authentication → Sign-in method and enable Google.
3Go to Firestore Database → Create database. Start in production mode, then set these security rules:
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /cards/{userId} {
allow read: if true;
allow write: if request.auth != null
&& request.auth.uid == userId;
}
match /slugs/{slug} {
allow read: if true;
allow write: if request.auth != null;
}
}
}
4Go to Project Settings → Your apps → Web app (add one if needed) and copy your Firebase config object.
5Go to Authentication → Settings → Authorized domains and add the domain where you'll host this builder.
6Open builder.html in a text editor, find the FIREBASE_CONFIG block at the top of the script, and replace the placeholder values with your real config. Reload — you're live.