diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 575e0dc1..4fac54fe 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,11 +12,11 @@ This guide will walk you through the process of contributing to the ENS docs. If #### Create a new issue -If you spot a problem with the docs, [search if an issue already exists](https://github.com/ensdomains/docs-v2/issues). If a related issue doesn't exist, you can open a new issue using a relevant [issue form](https://github.com/ensdomains/docs-v2/issues/new). +If you spot a problem with the docs, [search if an issue already exists](https://github.com/ensdomains/docs/issues). If a related issue doesn't exist, you can open a new issue using a relevant [issue form](https://github.com/ensdomains/docs/issues/new). #### Solve an issue -Scan through our [existing issues](https://github.com/ensdomains/docs-v2/issues) to find one that interests you. You can narrow down the search using `labels` as filters. As a general rule, we don't assign issues to anyone. If you find an issue to work on, you are welcome to open a PR with a fix. +Scan through our [existing issues](https://github.com/ensdomains/docs/issues) to find one that interests you. You can narrow down the search using `labels` as filters. As a general rule, we don't assign issues to anyone. If you find an issue to work on, you are welcome to open a PR with a fix. ### Make Changes diff --git a/app/src/components/Libraries.tsx b/app/src/components/Libraries.tsx index dc929787..44814897 100644 --- a/app/src/components/Libraries.tsx +++ b/app/src/components/Libraries.tsx @@ -27,7 +27,7 @@ export const ensLibraries: Language[] = [ href: 'https://wagmi.sh/', name: 'Wagmi', description: '', - logo: '/icons/legacy/logos/wagmi.svg', + logo: undefined, }, ], }, @@ -39,7 +39,7 @@ export const ensLibraries: Language[] = [ href: 'https://viem.sh/', name: 'Viem', description: '', - logo: '/icons/legacy/logos/viem.svg', + logo: undefined, }, { href: 'https://docs.ethers.org/', diff --git a/app/src/content/prose/repository/github/type.ts b/app/src/content/prose/repository/github/type.ts index a0dd27d3..fab8dc25 100644 --- a/app/src/content/prose/repository/github/type.ts +++ b/app/src/content/prose/repository/github/type.ts @@ -3,8 +3,8 @@ type URLType = string; export type GithubRepositoryData = { id: string; node_id: string; - name: 'docs-v2'; - full_name: 'ensdomains/docs-v2'; + name: 'docs'; + full_name: 'ensdomains/docs'; private: false; // Big owner: object; diff --git a/app/src/layout/details/variations/GitCommitLink.tsx b/app/src/layout/details/variations/GitCommitLink.tsx index 70d174cd..9f3c0482 100644 --- a/app/src/layout/details/variations/GitCommitLink.tsx +++ b/app/src/layout/details/variations/GitCommitLink.tsx @@ -8,7 +8,7 @@ import { FC, PropsWithChildren } from 'react'; import { cx } from '@/lib/cx'; const prefix = 'docs'; -const repo = 'ensdomains/docs-v2'; +const repo = 'ensdomains/docs'; export const GitCommitLink: FC< PropsWithChildren<{ file: string; hash: string }> diff --git a/app/src/layout/footer/contribute/ContributeLink.tsx b/app/src/layout/footer/contribute/ContributeLink.tsx index c19cf3b0..89413881 100644 --- a/app/src/layout/footer/contribute/ContributeLink.tsx +++ b/app/src/layout/footer/contribute/ContributeLink.tsx @@ -4,7 +4,7 @@ import { usePathname } from 'next/navigation'; import { FC } from 'react'; import { FiGithub } from 'react-icons/fi'; -const ROOT_REPO = 'ensdomains/docs-v2'; +const ROOT_REPO = 'ensdomains/docs'; export const ContributeLink: FC<{ url?: string }> = ({ url }) => { if (!url) { diff --git a/app/src/layout/header/Header.tsx b/app/src/layout/header/Header.tsx index a2ae31b6..4d551b16 100644 --- a/app/src/layout/header/Header.tsx +++ b/app/src/layout/header/Header.tsx @@ -98,7 +98,7 @@ export const Header = forwardRef(