alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Merge branch 'development'
author
pdelfan
date
5 months ago
(Feb 6, 2026, 3:10 PM -0800)
commit
3d00a4e8
3d00a4e8e007e9f12d3fc7d5932c7ed4ed0c7ac6
parent
689b1934
689b1934709821dab12300f3cc94ecbe1ffea699
+20
-4
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
app
(dashboard)
explore
(others)
open-collections
layout.tsx
+20
-4
src/webapp/app/(dashboard)/explore/(others)/open-collections/layout.tsx
View file
Reviewed
···
1
1
import BackButton from '@/components/navigation/backButton/BackButton';
2
2
import Header from '@/components/navigation/header/Header';
3
3
-
import { Container, Group, Stack, Text, ThemeIcon, Title } from '@mantine/core';
3
3
+
import {
4
4
+
Container,
5
5
+
Group,
6
6
+
Stack,
7
7
+
Text,
8
8
+
ThemeIcon,
9
9
+
Title,
10
10
+
Tooltip,
11
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
26
-
<ThemeIcon size={'md'} variant="light" color={'green'} radius={'xl'}>
27
27
-
<FaSeedling size={14} />
28
28
-
</ThemeIcon>
34
34
+
<Tooltip label="These collections are open to everyone. You can add cards to help them grow.">
35
35
+
<ThemeIcon
36
36
+
size={'md'}
37
37
+
variant="light"
38
38
+
color={'green'}
39
39
+
radius={'xl'}
40
40
+
>
41
41
+
<FaSeedling size={14} />
42
42
+
</ThemeIcon>
43
43
+
</Tooltip>
44
44
+
29
45
<Title order={2}>Open Collections</Title>
30
46
</Group>
31
47
</Container>