Customizing Social Links
The social links displayed across all pages are managed through the social.json
file. By modifying this file, your changes will automatically reflect on all pages. To update the social links, open the social.json
file located in the src/config
folder, where you will find the following structure:
{ "main": [ { "enable": true, "label": "facebook", "icon": "/images/icons/svg/facebook.svg", "url": "https://www.facebook.com/looka" }, { "enable": true, "label": "twitter", "icon": "/images/icons/svg/twitter.svg", "url": "https://twitter.com/looka" }, { "enable": true, "label": "instagram", "icon": "/images/icons/svg/instagram.svg", "url": "https://www.instagram.com/looka" }, { "enable": true, "label": "linkedin", "icon": "/images/icons/svg/linkedin.svg", "url": "https://www.linkedin.com/looka" } ]}
enable
→ Enables or disables the social link.label
→ Defines the name of the social platform.icon
→ Specifies the icon associated with the social link.url
→ Specifies the destination URL of the social link.