diff --git a/README.md b/README.md index ff64a6a..324f678 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![license](https://img.shields.io/github/license/xpack/web-preview-docusaurus)](https://github.com/xpack/web-preview-docusaurus/blob/master/LICENSE) +[![license](https://img.shields.io/github/license/xpack/xpack.github.io)](https://github.com/xpack/xpack.github.io/blob/master/LICENSE) # The xPack Project web site source @@ -8,7 +8,7 @@ The Docusaurus source code for the xPack Project web site. ## Project source The source code is available on -[GitHub](https://github.com/xpack/web-preview-docusaurus/). +[GitHub](https://github.com/xpack/xpack.github.io/). ## License diff --git a/package.json b/package.json index 8d92f6d..b615e11 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,14 @@ { - "name": "web-preview-docusaurus", + "name": "xpack.github.io", "version": "0.0.0", - "description": "A preview of the next web site", + "description": "The website for the xPack project", "main": "", "scripts": { + "npm-install": "npm install", + "npm-link-helpers": "npm link @xpack/npm-packages-helper @xpack/docusaurus-template-liquid", + "npm-link": "npm link", + "npm-outdated": "npm outdated", + "npm-update": "npm update", "generate-top-commons": "bash node_modules/@xpack/npm-packages-helper/maintenance-scripts/generate-top-commons.sh" }, "author": { @@ -12,13 +17,13 @@ "url": "https://github.com/ilg-ul" }, "bugs": { - "url": "https://github.com/xpack/web-preview-docusaurus/issues" + "url": "https://github.com/xpack/xpack.github.io/issues" }, - "homepage": "https://xpack.github.io/web-preview-docusaurus/", + "homepage": "https://xpack.github.io/", "license": "MIT", "repository": { "type": "git", - "url": "git+https://github.com/xpack/web-preview-docusaurus.git" + "url": "git+https://github.com/xpack/xpack.github.io.git" }, "dependencies": {}, "devDependencies": { diff --git a/website/blog/_common/_download-analytics.mdx b/website/blog/_common/_download-analytics.mdx index c25f418..6022576 100644 --- a/website/blog/_common/_download-analytics.mdx +++ b/website/blog/_common/_download-analytics.mdx @@ -7,9 +7,9 @@ import Image from '@theme/IdealImage'; ## Analytics -- npmjs.com [web-preview-docusaurus](https://www.npmjs.com/package/web-preview-docusaurus) - - last week downloads [![NPM Downloads](https://img.shields.io/npm/dw/web-preview-docusaurus)](https://www.npmjs.com/package/web-preview-docusaurus/) - - total downloads [![NPM Downloads](https://img.shields.io/npm/d18m/web-preview-docusaurus) -](https://www.npmjs.com/package/web-preview-docusaurus/) +- npmjs.com [xpack.github.io](https://www.npmjs.com/package/xpack.github.io) + - last week downloads [![NPM Downloads](https://img.shields.io/npm/dw/xpack.github.io)](https://www.npmjs.com/package/xpack.github.io/) + - total downloads [![NPM Downloads](https://img.shields.io/npm/d18m/xpack.github.io) +](https://www.npmjs.com/package/xpack.github.io/) Credit to [Shields IO](https://shields.io) for the badges. diff --git a/website/docs/developer/_common/_get-project-sources.mdx b/website/docs/developer/_common/_get-project-sources.mdx index 446fa39..5ffe9ca 100644 --- a/website/docs/developer/_common/_get-project-sources.mdx +++ b/website/docs/developer/_common/_get-project-sources.mdx @@ -7,7 +7,7 @@ The project is hosted on GitHub: -- https://github.com/xpack/web-preview-docusaurus.git +- https://github.com/xpack/xpack.github.io.git The project uses multiple branches: @@ -20,7 +20,7 @@ terminal (on Windows use the Git Bash console): ```sh mkdir ~/Work/npm-packages && cd ~/Work/npm-packages -git clone https://github.com/xpack/web-preview-docusaurus.git web-preview-docusaurus.git +git clone https://github.com/xpack/xpack.github.io.git xpack.github.io.git ``` For **development** purposes, clone the `development` branch: @@ -29,11 +29,11 @@ For **development** purposes, clone the `development` branch: mkdir ~/Work/npm-packages && cd ~/Work/npm-packages git clone \ --branch development \ - https://github.com/xpack/web-preview-docusaurus.git web-preview-docusaurus.git + https://github.com/xpack/xpack.github.io.git xpack.github.io.git ``` Or, if the repo was already cloned: ```sh -git -C ~/Work/npm-packages/web-preview-docusaurus.git pull +git -C ~/Work/npm-packages/xpack.github.io.git pull ``` diff --git a/website/docs/developer/_common/_prerequisites.mdx b/website/docs/developer/_common/_prerequisites.mdx index 681a6af..e69923c 100644 --- a/website/docs/developer/_common/_prerequisites.mdx +++ b/website/docs/developer/_common/_prerequisites.mdx @@ -7,7 +7,7 @@ import CodeBlock from '@theme/CodeBlock'; ## Prerequisites -**web-preview-docusaurus** is a portable Node.js module; +**xpack.github.io** is a portable Node.js module; development can be performed on macOS, GNU/Linux and even Windows (although some npm scripts must be executed in a Git Bash terminal). diff --git a/website/docs/developer/index.mdx b/website/docs/developer/index.mdx index 92602d1..76f9b11 100644 --- a/website/docs/developer/index.mdx +++ b/website/docs/developer/index.mdx @@ -7,7 +7,7 @@ title: Contributor's Guide description: Guidance for developers aiming to contribute new features or bug fixes, detailing how to build the module, including prerequisites, repositories utilised, and scripts. keywords: - xpack - - web-preview-docusaurus + - xpack.github.io - prerequisites - repositories - build diff --git a/website/docs/getting-started/index.mdx b/website/docs/getting-started/index.mdx index a95190f..ac55602 100644 --- a/website/docs/getting-started/index.mdx +++ b/website/docs/getting-started/index.mdx @@ -7,7 +7,7 @@ title: Getting Started description: The initial steps to explore the project, including what xpacks are, the project's features, benefits, compatibility, and available documentation. keywords: - xpack - - web-preview-docusaurus + - xpack.github.io - overview - compatibility diff --git a/website/docs/maintainer/index.mdx b/website/docs/maintainer/index.mdx index 8798617..4c40cb3 100644 --- a/website/docs/maintainer/index.mdx +++ b/website/docs/maintainer/index.mdx @@ -7,7 +7,7 @@ title: Maintainer's Guide description: Assistance for project maintainers, including the release schedule, versioning scheme, and instructions on how to build, test, and publish. keywords: - xpack - - web-preview-docusaurus + - xpack.github.io - releases - build - publish diff --git a/website/docs/project/about/index.mdx b/website/docs/project/about/index.mdx index 41f437b..e9b6b2f 100644 --- a/website/docs/project/about/index.mdx +++ b/website/docs/project/about/index.mdx @@ -7,7 +7,7 @@ title: About description: Details about the project, including the history of the website and details about the author. keywords: - xpack - - web-preview-docusaurus + - xpack.github.io - about date: 2024-10-24 23:58:00 +0300 diff --git a/website/docs/support/index.mdx b/website/docs/support/index.mdx index 86b75d7..42b04e1 100644 --- a/website/docs/support/index.mdx +++ b/website/docs/support/index.mdx @@ -7,7 +7,7 @@ title: Help Centre description: The project's support channel, where you can ask questions, start discussions, and report issues. keywords: - xpack - - web-preview-docusaurus + - xpack.github.io - support - discussions - issues @@ -36,7 +36,7 @@ If you find any issues in the content of these pages (such as typos or incorrect phrasing) or have suggestions for improving the documentation, please share them through the GitHub Discussions pages. Use the top-level -[GitHub Discussions](https://github.com/xpack/web-preview-docusaurus/discussions) +[GitHub Discussions](https://github.com/xpack/xpack.github.io/discussions) page for issues related to the main xPack Project site, or the individual project’s GitHub Discussions pages for specific projects. ## Check documentation @@ -65,7 +65,7 @@ If you still could not find a solution, if you have interesting use cases, if you have custom configurations, and generally if you have any experience that you want to share with others, use the top-level -[GitHub Discussions](https://github.com/xpack/web-preview-docusaurus/discussions) +[GitHub Discussions](https://github.com/xpack/xpack.github.io/discussions) page for questions related to the top xPack Project. For specific projects, use the individual project's GitHub Discussions pages. Enter a **New discussion**; use the **Q&A** category for questions, @@ -115,7 +115,7 @@ Follow the hashtag `#xpack_project` for the latest updates. **Do not** use private e-mail for support, **use the -[GitHub Discussions](https://github.com/xpack/web-preview-docusaurus/discussions)** pages. +[GitHub Discussions](https://github.com/xpack/xpack.github.io/discussions)** pages. ::: diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index ba9faf6..6ff68fb 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -70,12 +70,12 @@ const config: Config = { // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' baseUrl: process.env.DOCUSAURUS_BASEURL ?? - '/web-preview-docusaurus/', + '/', // GitHub pages deployment config. // If you aren't using GitHub pages, you don't need these. organizationName: 'xpack', // Usually your GitHub org/user name. - projectName: 'web-preview-docusaurus', // Usually your repo name. + projectName: 'xpack.github.io', // Usually your repo name. onBrokenAnchors: 'throw', onBrokenLinks: 'throw', @@ -103,7 +103,7 @@ const config: Config = { sidebarPath: './sidebars.ts', // Please change this to your repo. // Remove this to remove the "edit this page" links. - editUrl: 'https://github.com/xpack/web-preview-docusaurus/edit/master/website/', + editUrl: 'https://github.com/xpack/xpack.github.io/edit/master/website/', // showLastUpdateAuthor: true, showLastUpdateTime: true, }, @@ -115,7 +115,7 @@ const config: Config = { }, // Please change this to your repo. // Remove this to remove the "edit this page" links. - editUrl: 'https://github.com/xpack/web-preview-docusaurus/edit/master/website/', + editUrl: 'https://github.com/xpack/xpack.github.io/edit/master/website/', // Useful options to enforce blogging best practices onInlineTags: 'warn', onInlineAuthors: 'warn', @@ -173,7 +173,7 @@ const config: Config = { attributes: { rel: 'icon', type: 'image/png', - href: '/web-preview-docusaurus/favicons/favicon-48x48.png', + href: '/favicons/favicon-48x48.png', sizes: '48x48' } }, @@ -182,14 +182,14 @@ const config: Config = { attributes: { rel: 'icon', type: 'image/svg+xml', - href: '/web-preview-docusaurus/favicons/favicon.svg' + href: '/favicons/favicon.svg' } }, { tagName: 'link', attributes: { rel: 'shortcut icon', - href: '/web-preview-docusaurus/favicons/favicon.ico' + href: '/favicons/favicon.ico' } }, { @@ -204,7 +204,7 @@ const config: Config = { tagName: 'link', attributes: { rel: 'manifest', - href: '/web-preview-docusaurus/favicons/site.webmanifest' + href: '/favicons/site.webmanifest' } } ], @@ -258,7 +258,7 @@ const config: Config = { ] }, { - href: 'https://github.com/xpack/web-preview-docusaurus/', + href: 'https://github.com/xpack/xpack.github.io/', position: 'right', className: 'header-github-link', 'aria-label': 'GitHub repository', @@ -300,7 +300,7 @@ const config: Config = { items: [ { label: 'GitHub Discussions', - href: 'https://github.com/xpack/web-preview-docusaurus/discussions', + href: 'https://github.com/xpack/xpack.github.io/discussions', }, { label: 'Stack Overflow', @@ -324,8 +324,8 @@ const config: Config = { href: 'https://www.paypal.com/donate/?hosted_button_id=5MFRG9ZRBETQ8', }, { - label: 'GitHub web-preview-docusaurus', - href: 'https://github.com/xpack/web-preview-docusaurus/', + label: 'GitHub xpack.github.io', + href: 'https://github.com/xpack/xpack.github.io/', }, { label: 'GitHub xpack', diff --git a/website/static/favicons/site.webmanifest b/website/static/favicons/site.webmanifest index 4c41289..68640ad 100644 --- a/website/static/favicons/site.webmanifest +++ b/website/static/favicons/site.webmanifest @@ -3,13 +3,13 @@ "short_name": "xPack", "icons": [ { - "src": "/web-preview-docusaurus/favicons/web-app-manifest-192x192.png", + "src": "/favicons/web-app-manifest-192x192.png", "sizes": "192x192", "type": "image/png", "purpose": "maskable" }, { - "src": "/web-preview-docusaurus/favicons/web-app-manifest-512x512.png", + "src": "/favicons/web-app-manifest-512x512.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable"