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
Credentials (optional)
Shown as a two-column block on the front of your card. Toggle either off to hide it.
Links
Socials
Portfolio
Links to your work appear on the back of the card. Toggle the switch to enable the flip.
Layout
Grid is best when most items have cover images.
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
Style
Generic
Brands · Simple Icons (CC0, free for any use)
We use Google Sign-in for accounts, Firebase on Google Cloud to store your profile data (name, photo, links), and Google Analytics to measure traffic. 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. We use Google Analytics to measure aggregate site traffic (page views, referrers, device type) — Google sets first-party cookies (_ga, _ga_*) for this purpose. You can decline analytics via the consent banner shown on first visit; declining prevents these cookies from being set. We do not use any cookies for advertising or share data with ad networks.
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.
Agreement By using biography.now (the “Service”), you agree to these Terms. If you don’t agree, please don’t use the Service.
2
The Service biography.now lets you create and host a public link-in-bio page. Free and paid tiers are available; paid features and pricing are listed in-app and may change.
3
Your account You’re responsible for keeping your credentials secure and for activity under your account. You must be at least 13 years old to use the Service.
4
Your content You keep ownership of everything you upload (photos, links, text). You grant us a non-exclusive license to host and display your content as needed to operate the Service. You’re responsible for ensuring your content doesn’t infringe anyone else’s rights.
5
Acceptable use You agree not to: post unlawful, deceptive, defamatory, harassing, or infringing content; impersonate others; bypass security measures; scrape or load-test the Service; or use it to send unsolicited messages. We may remove content or terminate accounts that violate this section, with or without notice.
6
Subscriptions and billing Paid plans are billed in advance via Stripe. Subscriptions auto-renew until you cancel. You can cancel anytime; cancellation takes effect at the end of your current billing period. We don’t offer pro-rated refunds for unused time, but we’ll consider refund requests on a case-by-case basis at hello@kuneshconsulting.com.
7
Termination You can stop using the Service and delete your data at any time via the in-app Delete buttons. We may suspend or terminate accounts that violate these Terms, and may discontinue the Service with reasonable notice.
8
Disclaimers The Service is provided “as is” without warranties of any kind. We don’t promise the Service will be uninterrupted, error-free, or available in any particular jurisdiction.
9
Limitation of liability To the maximum extent permitted by law, our total liability for any claim related to the Service is limited to the greater of $50 USD or what you paid us in the 12 months before the claim. We’re not liable for indirect, incidental, or consequential damages.
10
Changes We may update these Terms from time to time. Material changes will be announced in-app or by email. Continued use after changes means you accept them.
11
Governing law These Terms are governed by the laws of the State of New York. Disputes will be resolved in the state or federal courts located in New York County.
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.