This commit is contained in:
KS Jannette
2026-02-13 16:43:00 -05:00
parent 091315c188
commit 61835ae3aa
6 changed files with 81 additions and 87 deletions

View File

@@ -7,7 +7,6 @@ import '../styles/stickies.css';
const Stickies = () => { const Stickies = () => {
const { data: stickies, isLoading, error } = useGetStickies(); const { data: stickies, isLoading, error } = useGetStickies();
const { mutate: cluster, data: clusters, isPending } = useClusterStickies(); const { mutate: cluster, data: clusters, isPending } = useClusterStickies();
console.log('data, error', stickies, error)
if (isLoading) return <div>Loading...</div>; if (isLoading) return <div>Loading...</div>;
if (error) return <div>Error: {error.message}</div>; if (error) return <div>Error: {error.message}</div>;

View File

@@ -5,12 +5,8 @@ import '../styles/home.css'
const Home = () => { const Home = () => {
return ( return (
<div> <div>
<Navbar /> <Navbar />
<Stickies /> <Stickies />
</div> </div>
); );
}; };

View File

@@ -3,23 +3,23 @@
border: 1px solid #6dd6f4; border: 1px solid #6dd6f4;
background-color: rgb(92, 0, 91); background-color: rgb(92, 0, 91);
display: flex; display: flex;
} }
.main-head-subbox-right { .main-head-subbox-right {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
margin-right: 34px; margin-right: 34px;
width: 50%; width: 50%;
} }
.main-head-subbox-left { .main-head-subbox-left {
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
margin-left: 34px; margin-left: 34px;
width: 50%; width: 50%;
} }
.main-head { .main-head {
font-size: 5rem; font-size: 5rem;
color: #6dd6f4; color: #6dd6f4;
margin: 6px 0px 24px 22px; margin: 6px 0px 24px 22px;
@@ -27,9 +27,9 @@
font-weight: 500; font-weight: 500;
letter-spacing: 4px; letter-spacing: 4px;
text-decoration: underline; text-decoration: underline;
} }
.material-symbols-outlined { .material-symbols-outlined {
margin: 13px 74px 0px 0px; margin: 13px 74px 0px 0px;
font-size: 82px; font-size: 82px;
color: #6dd6f4; color: #6dd6f4;
@@ -37,11 +37,10 @@
'FILL' 0, 'FILL' 0,
'wght' 300, 'wght' 300,
'GRAD' 0, 'GRAD' 0,
'opsz' 24 'opsz' 24;
} }
@media screen and (max-width: 478px) {
@media screen and (max-width: 478px) {
.main-head-subbox-right { .main-head-subbox-right {
display: none; display: none;
} }
@@ -71,4 +70,4 @@
.material-symbols-outlined { .material-symbols-outlined {
display: none !important; display: none !important;
} }
} }