UNPKG

@networkpro/web

Version:

This package powers the official web presence of Network Pro Strategies — a research- and infrastructure-focused technology initiative working across cybersecurity, digital systems, and privacy.

19 lines (15 loc) 684 B
/* ========================================================================== src/lib/types/metadata.js Copyright © 2025-2026 Network Pro Strategies (Network Pro™) SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later This file is part of Network Pro. ========================================================================== */ /** * @typedef {object} MetaData * @property {string} title - Page title * @property {string} description - Meta description for SEO/social * @property {string} [image] - Optional OG image URL * @property {string} [url] - Canonical URL */ // Export types only for JSDoc export /** @typedef {import('./metadata.js').MetaData} MetaData */ {};