A simple and easy to use template for a "Link in Bio" site built on Next.js/React. View a live example of the template here.
You can run the app in dev mode with the following command:
npm run dev
Additionally, you can create a production build by running:
npm run build
The config has the following properties:
An array of Link
objects. Each link must contain an href
and title
property, like so:
{
links: [
{
href: "https://tiktok.com",
title: "Follow me on TikTok",
},
];
}
The URL to profile picture.
The name of your site. This will be used if you do not specify a logo, and in the site's <title>
if siteTitle
is not specified.
Used for the site's <title>
Used for the site's mete description
The URL for the light mode logo (Please note the logoWidth
and logoHeight
are required to specify a logo)
The URL for the dark mode logo (Please note the logoWidth
and logoHeight
are required to specify a logo)
The width you want to set for the logo. This is used to prevent Cumulative Layout Shift.
The height you want to set for the logo. This is used to prevent Cumulative Layout Shift.
A boolean to indicate if you want the link's favicon to display next to the text.