diff --git a/web/app/components/tools/marketplace.tsx b/web/app/components/tools/marketplace.tsx new file mode 100644 index 0000000000..d38b165615 --- /dev/null +++ b/web/app/components/tools/marketplace.tsx @@ -0,0 +1,262 @@ +import { RiArrowUpDoubleLine } from '@remixicon/react' +import Card from '@/app/components/plugins/card' +import CardMoreInfo from '@/app/components/plugins/card/card-more-info' +import { toolNotion } from '@/app/components/plugins/card/card-mock' +import { useGetLanguage } from '@/context/i18n' + +type MarketplaceProps = { + onMarketplaceScroll: () => void +} +const Marketplace = ({ + onMarketplaceScroll, +}: MarketplaceProps) => { + const locale = useGetLanguage() + + return ( +