1
0
Fork 0

[org] feat: Add curated measurments sets to site (#198)

Also includes fixes for darkmode.

Reviewed-on: https://codeberg.org/freesewing/freesewing/pulls/198
This commit is contained in:
Joost De Cock 2025-04-03 14:41:18 +00:00
parent 77e75fa940
commit 880f738973
11 changed files with 206 additions and 5 deletions

View file

@ -6,6 +6,7 @@ import {
} from '@freesewing/react/context/LoadingStatus'
import { ModalContext, ModalContextProvider } from '@freesewing/react/context/Modal'
import {
ChatIcon,
DesignIcon,
DocsIcon,
ShowcaseIcon,
@ -144,4 +145,12 @@ const navbarItems = {
<SimpleNavbarItem label="Showcase" href="/showcase/" Icon={ShowcaseIcon} Link={props.Link} />
),
blog: (props) => <SimpleNavbarItem label="Blog" href="/blog/" Icon={RssIcon} Link={props.Link} />,
forum: (props) => (
<SimpleNavbarItem
label="Forum"
href="https://forum.freesewing.eu/"
Icon={ChatIcon}
Link={props.Link}
/>
),
}