Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecation #164

Merged
merged 4 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# DEPRECATED

This project is deprecated in favour of https://github.com/fixes-world/token-list

for more information check the [forum post](https://forum.flow.com/t/replacing-nft-catalog-with-a-decentralized-alternative-proposal/6723)

# NFT Catalog

The NFT Catalog is an on chain registry listing NFT collections that exists on Flow which adhere to the NFT metadata standard. This empowers dApp developers to easily build on top of and discover interoperable NFT collections on Flow.
Expand Down
2 changes: 2 additions & 0 deletions ui/apps/nft-portal/src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ import { ToolsLayout } from './components/tools/tools-layout';
import { Submitted } from './components/verifier/submitted';
import { CatalogDetails } from './components/catalog/catalog-details';
import { Docs } from './components/docs';
import { DeprecationNotice } from './components/shared/deprecation-notice';

export function App() {
return (
<>
<DeprecationNotice />
<Navbar />
<div className="min-h-screen bg-primary-gray-50">
<div className="pb-16">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';
import {FaExclamationTriangle} from 'react-icons/fa'

export const DeprecationNotice = () => {
return (
<div className="sticky top-0 w-full bg-yellow-50 border-l-4 border-yellow-400 p-4 text-center flex justify-center" role="alert">
<div className="flex">
<div className="flex flex-shrink-0 items-center">
<FaExclamationTriangle size={32} />
</div>
<div className="ml-3">
<p className="text-md font-medium text-yellow-700">
Deprecation Notice
</p>
<p className="mt-1 text-sm text-yellow-700">
The <strong>Flow NFT Catalog</strong> is deprecated in favor of the <strong><a className="underline" href="https://token-list.fixes.world/">Token List</a></strong>.
Please update your references accordingly.
</p>
</div>
</div>
</div>
);
};
Loading
Loading