/** * Social media platform URLs */ export declare const SOCIAL_LINKS: { /** * X (formerly Twitter) profile URL */ readonly x: "https://x.com/Plyaz_"; /** * Instagram profile URL */ readonly instagram: "https://instagram.com/plyaz_"; /** * LinkedIn company page URL */ readonly linkedin: "https://linkedin.com/company/plyaz"; }; /** * Product-related external links */ export declare const PRODUCT_LINKS: { /** * Documentation site URL */ readonly docs: "https://plyaz.gitbook.io/plyaz"; /** * Community platform URL */ readonly community: "https://community.plyaz.co.uk"; /** * Support email address */ readonly support: "mailto:help@plyaz.co.uk"; }; /** * Blog configuration constants */ export declare const BLOG: { /** * Number of posts to display initially */ readonly INITIAL_POSTS_TO_SHOW: 3; /** * Number of posts to load when "Load More" is clicked */ readonly POSTS_INCREMENT: 3; /** * Animation delay in milliseconds between post appearances */ readonly ANIMATION_DELAY: 100; }; //# sourceMappingURL=social.d.ts.map