{"version":3,"sources":["../src/social.ts"],"names":["SOCIAL_LINKS","PRODUCT_LINKS","BLOG"],"mappings":";AAGO,IAAMA,CAAAA,CAAe,CAI1B,CAAA,CAAG,sBAAA,CAKH,SAAA,CAAW,+BAKX,QAAA,CAAU,oCACZ,CAAA,CAKaC,CAAAA,CAAgB,CAI3B,IAAA,CAAM,iCAKN,SAAA,CAAW,+BAAA,CAKX,OAAA,CAAS,yBACX,CAAA,CAKaC,CAAAA,CAAO,CAIlB,qBAAA,CAAuB,CAAA,CAKvB,eAAA,CAAiB,CAAA,CAKjB,eAAA,CAAiB,GACnB","file":"social.mjs","sourcesContent":["/**\n * Social media platform URLs\n */\nexport const SOCIAL_LINKS = {\n  /**\n   * X (formerly Twitter) profile URL\n   */\n  x: 'https://x.com/Plyaz_',\n\n  /**\n   * Instagram profile URL\n   */\n  instagram: 'https://instagram.com/plyaz_',\n\n  /**\n   * LinkedIn company page URL\n   */\n  linkedin: 'https://linkedin.com/company/plyaz',\n} as const;\n\n/**\n * Product-related external links\n */\nexport const PRODUCT_LINKS = {\n  /**\n   * Documentation site URL\n   */\n  docs: 'https://plyaz.gitbook.io/plyaz',\n\n  /**\n   * Community platform URL\n   */\n  community: 'https://community.plyaz.co.uk',\n\n  /**\n   * Support email address\n   */\n  support: 'mailto:help@plyaz.co.uk',\n} as const;\n\n/**\n * Blog configuration constants\n */\nexport const BLOG = {\n  /**\n   * Number of posts to display initially\n   */\n  INITIAL_POSTS_TO_SHOW: 3,\n\n  /**\n   * Number of posts to load when \"Load More\" is clicked\n   */\n  POSTS_INCREMENT: 3,\n\n  /**\n   * Animation delay in milliseconds between post appearances\n   */\n  ANIMATION_DELAY: 100,\n} as const;\n"]}