This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'development'

+20 -4
+20 -4
src/webapp/app/(dashboard)/explore/(others)/open-collections/layout.tsx
··· 1 1 import BackButton from '@/components/navigation/backButton/BackButton'; 2 2 import Header from '@/components/navigation/header/Header'; 3 - import { Container, Group, Stack, Text, ThemeIcon, Title } from '@mantine/core'; 3 + import { 4 + Container, 5 + Group, 6 + Stack, 7 + Text, 8 + ThemeIcon, 9 + Title, 10 + Tooltip, 11 + } from '@mantine/core'; 4 12 import type { Metadata } from 'next'; 5 13 import { Fragment } from 'react'; 6 14 import { FaSeedling } from 'react-icons/fa6'; ··· 23 31 24 32 <Container p={'xs'} size={'xl'}> 25 33 <Group gap={'xs'}> 26 - <ThemeIcon size={'md'} variant="light" color={'green'} radius={'xl'}> 27 - <FaSeedling size={14} /> 28 - </ThemeIcon> 34 + <Tooltip label="These collections are open to everyone. You can add cards to help them grow."> 35 + <ThemeIcon 36 + size={'md'} 37 + variant="light" 38 + color={'green'} 39 + radius={'xl'} 40 + > 41 + <FaSeedling size={14} /> 42 + </ThemeIcon> 43 + </Tooltip> 44 + 29 45 <Title order={2}>Open Collections</Title> 30 46 </Group> 31 47 </Container>