Learn how to create, customize, and publish your link page.
The first step is to access the panel where all the magic happens. If you are running the project
locally, start the server with the npm run dev command and go to http://localhost:3000/admin.
You will be presented with the editing interface. We recommend starting by loading the
data/links.json file to familiarize yourself with the structure.
The admin panel has several tabs for you to customize your page:
After making your edits, it is crucial to save them. Use the "Save" or "Save and Export" button. This
will create or update a JSON file in the /data folder in the project root. You can name
it whatever you like, for example, my-profile.json.
This file is the "brain" of your page, containing all the information you have configured.
This is the most important part. Your final page is composed of a set of static files. You need to prepare them for publication.
link-page folder: Find this folder in the
project root. Copy it to a safe location on your computer. It is this copy that you will
publish./data folder where you saved your file (e.g.,
my-profile.json).data folder that exists in your
copy of the link-page.link-page/data, **rename the file you just copied to
links.json**.The final result should look like this:
Why is this necessary? The static page (link-page/index.html) is
programmed to look for and read a file called links.json inside its own
data folder to display its content.
With the link-page folder prepared, you are ready to publish it!
You can host this folder on any static website hosting service, such as:
Just upload the contents of your copied link-page folder to the chosen service, and your
link page will be online for the world to see!