Skip to content

Commit

Permalink
chore: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
anuragxxd committed Oct 20, 2024
1 parent 7ee2545 commit e561bff
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion apps/documentation/theme.config.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { useRouter } from 'next/router'
import { DocsThemeConfig } from 'nextra-theme-docs';
import Image from 'next/image';
import { RiSlackFill, RiGithubFill } from '@remixicon/react';
Expand Down Expand Up @@ -26,8 +27,10 @@ const config: DocsThemeConfig = {
},
gitTimestamp: false,
useNextSeoProps() {
const { asPath } = useRouter()

return {
titleTemplate: '%s – Elixir Cloud Components',
titleTemplate: `${asPath === '/' ? '' : `%s – `}Elixir Cloud Components`,
};
},
};
Expand Down
4 changes: 3 additions & 1 deletion packages/ecc-client-ga4gh-tes/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ecc-client-ga4gh-tes

[//]: # (TODO: Add docs link)
The `@elixir-cloud/tes` package provides a suite of Web Components designed to interact with the [Task Execution Service (TES) API](https://github.com/ga4gh/task-execution-schemas/).
These components offer a user-friendly interface for managing task runs within cloud environments.
For more detailed information about this package and its components, please visit our [documentation](https://elixir-cloud-components.vercel.app/docs/tes/introduction).

[![logo-elixir][logo-elixir]][elixir]
[![logo-elixir-cloud-aai][logo-elixir-cloud-aai]][elixir-cloud-aai]
Expand Down
4 changes: 3 additions & 1 deletion packages/ecc-client-ga4gh-wes/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ecc-client-ga4gh-wes

[//]: # (TODO: Add doc link)
The @elixir-cloud/wes package provides a suite of Web Components designed to interact with the [Workflow Execution Service (WES) API](https://github.com/ga4gh/workflow-execution-service-schemas).
It offers functionalities for listing, creating, and deleting workflow runs. These components offer a user-friendly interface for managing workflow runs within cloud environments.
For more detailed information about this package and its components, please visit our [documentation](https://elixir-cloud-components.vercel.app/docs/wes/introduction).

[![logo-elixir][logo-elixir]][elixir]
[![logo-elixir-cloud-aai][logo-elixir-cloud-aai]][elixir-cloud-aai]
Expand Down
4 changes: 3 additions & 1 deletion packages/ecc-utils-design/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ecc-utils-design

This package serves as an abstraction layer & provides utility components to manage the headless yet constitent design across ecc component
The `@elixir-cloud/design` package is a foundational utility library that powers the ELIXIR Cloud Component's (ECC) ecosystem.
It provides a suite of low-level utility components that serve as building blocks for higher-level packages in the ECC suite.
For more detailed information about this package and its components, please visit our [documentation](https://elixir-cloud-components.vercel.app/docs/design/introduction).

[![logo-elixir][logo-elixir]][elixir]
[![logo-elixir-cloud-aai][logo-elixir-cloud-aai]][elixir-cloud-aai]
Expand Down

0 comments on commit e561bff

Please sign in to comment.