-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into e-1678-feature-support-v1-contactform
- Loading branch information
Showing
40 changed files
with
529 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,6 +133,7 @@ | |
|
||
body { | ||
@apply font-walsheim; | ||
background: var(--container-1); | ||
} | ||
|
||
code { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
shared/features/navigation/menu/primary-menu/primary-menu.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { PrimaryMenuProps } from "shared/features/navigation/menu/primary-menu/primary-menu.types"; | ||
|
||
import { ItemNav } from "@/design-system/molecules/item-nav"; | ||
|
||
export function PrimaryMenu({ isFolded }: PrimaryMenuProps) { | ||
return ( | ||
<> | ||
<ItemNav | ||
isFolded={isFolded} | ||
icon={{ name: "ri-line-chart-line" }} | ||
href={"/test"} | ||
translate={{ token: "primaryNavigation:primaryMenu.data" }} | ||
/> | ||
<ItemNav | ||
isFolded={isFolded} | ||
icon={{ name: "ri-wallet-3-line" }} | ||
href={"/test2"} | ||
translate={{ token: "primaryNavigation:primaryMenu.financial" }} | ||
isDisabled={true} | ||
/> | ||
<ItemNav | ||
isFolded={isFolded} | ||
icon={{ name: "ri-clipboard-line" }} | ||
href={"/test2"} | ||
translate={{ token: "primaryNavigation:primaryMenu.program" }} | ||
isDisabled={true} | ||
/> | ||
<ItemNav | ||
isFolded={isFolded} | ||
icon={{ name: "ri-compass-3-line" }} | ||
href={"/test2"} | ||
translate={{ token: "primaryNavigation:primaryMenu.projects" }} | ||
/> | ||
</> | ||
); | ||
} |
3 changes: 3 additions & 0 deletions
3
shared/features/navigation/menu/primary-menu/primary-menu.types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export interface PrimaryMenuProps { | ||
isFolded?: boolean; | ||
} |
23 changes: 23 additions & 0 deletions
23
shared/features/navigation/menu/secondary-menu/secondary-menu.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { SecondaryMenuProps } from "shared/features/navigation/menu/secondary-menu/secondary-menu.types"; | ||
|
||
import { ItemNav } from "@/design-system/molecules/item-nav"; | ||
|
||
export function SecondaryMenu({ isFolded }: SecondaryMenuProps) { | ||
return ( | ||
<> | ||
<ItemNav | ||
isFolded={isFolded} | ||
icon={{ name: "ri-settings-line" }} | ||
href={"/test"} | ||
translate={{ token: "primaryNavigation:secondaryMenu.support" }} | ||
/> | ||
<ItemNav | ||
isFolded={isFolded} | ||
icon={{ name: "ri-chat-4-line" }} | ||
href={"/test2"} | ||
translate={{ token: "primaryNavigation:secondaryMenu.settings" }} | ||
isDisabled={true} | ||
/> | ||
</> | ||
); | ||
} |
3 changes: 3 additions & 0 deletions
3
shared/features/navigation/menu/secondary-menu/secondary-menu.types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export interface SecondaryMenuProps { | ||
isFolded?: boolean; | ||
} |
Oops, something went wrong.