feat(SW-272) implemented mobile design

This commit is contained in:
Erik Tiekstra
2024-09-25 14:45:08 +02:00
parent 9fcf362587
commit 34f7620825
9 changed files with 306 additions and 232 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { MenuItem } from "@/types/trpc/routers/contentstack/header"
export interface MegaMenuProps {
title: MenuItem["title"]
seeAllLink: MenuItem["seeAllLink"]
submenu: MenuItem["submenu"]
card: MenuItem["card"]
isMobile: boolean
}