Showcase your brand your way with our free open-source LinkTree. Customize fonts, images, templates, and analytics via a thriving plug-in ecosystem. .
About the project | Getting started | How to contribute | License
This is an open source project that serves as a free alternative to the Linktree website.
- Profile picture component
- Name component
- Bio component
- Link button component to add infinite external links
- Fullscreen background image
- Responsive design
The main App component composes together the visual components:
function Home() {
return (
<div className="h-screen" style={{backgroundImage}}>
<ProfilePic />
<Name />
<Bio />
<div className="links">
<LinkButton/>
<LinkButton/>
</div>
</div>
)
}
Simply modify the background, pass the relevant props to the above components, and add/configure LinkButton components to create your own LinkTree.
The background image and link buttons can be fully customized by modifying the appropriate assets and component props.
Component props:
- ProfilePic - src
- Name - children
- Bio - children
- LinkButton - link, linkName
Pull requests are welcome to improve the components and add additional customization features. Please open an issue first to discuss proposed changes.
MIT