1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

new lab banner

This commit is contained in:
Fedor Katurov 2023-10-31 17:55:23 +06:00
parent acacc42ccf
commit 44640595f5
4 changed files with 1985 additions and 3 deletions

View file

@ -3,7 +3,7 @@ import React, { FC } from 'react';
import { SubTitle } from '~/components/common/SubTitle';
import { Group } from '~/components/containers/Group';
import { FlowRecentItem } from '~/components/flow/FlowRecentItem';
import { LabBanner } from '~/components/lab/LabBanner';
import { LabFactoryBanner } from '~/components/lab/LabFactoryBanner';
import { LabHeroes } from '~/components/lab/LabHeroes';
import { LabTags } from '~/components/lab/LabTags';
import { useLabContext } from '~/utils/context/LabContextProvider';
@ -17,7 +17,7 @@ const LabStats: FC<IProps> = () => {
return (
<Group>
<LabBanner />
<LabFactoryBanner />
<div className={styles.card}>
<Group>
@ -39,7 +39,7 @@ const LabStats: FC<IProps> = () => {
<>
<div className={styles.title}>Новые</div>
<Group className={styles.updates}>
{updates.slice(0, 10).map(node => (
{updates.slice(0, 10).map((node) => (
<FlowRecentItem node={node} key={node.id} has_new />
))}
</Group>