// @mui import Button from '@mui/material/Button'; import CardMedia from '@mui/material/CardMedia'; import Chip from '@mui/material/Chip'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; // @project import branding from '@/branding.json'; import { MegaMenuType } from '@/enum'; import { ADMIN_PATH, BUY_NOW_URL, DOCS_URL, PAGE_PATH, PRIVIEW_PATH } from '@/path'; import { Themes } from '@/config'; const linkProps = { target: '_blank', rel: 'noopener noreferrer' }; /*************************** MEGAMENU 4 - FOOTER ***************************/ function FooterData() { return ( Explore our range of landing demos tailored to suit your needs } /> {branding.brandName} offers 200+ customizable blocks, empowering you to effortlessly design and build landing pages tailored to your product or service needs. ); } /*************************** NAVBAR - MEGAMENU LANDINGS ***************************/ export const landingMegamenu = { id: 'landings', title: 'Landings', megaMenu: { type: MegaMenuType.MEGAMENU4, popperOffsetX: 195, toggleBtn: { children: 'Landings' }, menuItems: [ { title: 'CRM', theme: Themes.THEME_CRM, image: '/assets/images/mega-menu/crm-light.svg', status: 'Pro' }, { title: 'AI', theme: Themes.THEME_AI, image: '/assets/images/mega-menu/ai-light.svg', status: 'Pro' }, { title: 'Crypto', theme: Themes.THEME_CRYPTO, image: '/assets/images/mega-menu/crypto-light.svg', status: 'Pro' }, { title: 'Hosting', theme: Themes.THEME_HOSTING, image: '/assets/images/mega-menu/hosting-light.svg', status: 'Pro' }, { title: 'PMS', theme: Themes.THEME_PMS, image: '/assets/images/mega-menu/pms-light.svg', status: 'Pro' }, { title: 'HRM', theme: Themes.THEME_HRM, image: '/assets/images/mega-menu/hrm-light.svg', status: 'Pro' }, { title: 'Plugin', theme: Themes.THEME_PLUGIN, image: '/assets/images/mega-menu/plugin-light.svg', status: 'Pro' }, { title: 'LMS', theme: Themes.THEME_LMS, image: '/assets/images/mega-menu/lms-light.svg', status: 'Pro' } ], footerData: FooterData() } }; /*************************** MEGAMENU 5 - BANNER ***************************/ function BannerData() { return ( } size="small" slotProps={{ label: { sx: { px: 1.5, py: 0.5, typography: 'subtitle2' } } }} sx={{ bgcolor: 'background.default', '& .MuiChip-icon': { ml: 1.25 } }} /> Stunning dashboards designed to meet your needs. Effortlessly manage your app’s backend with customizable admin dashboards that enhance productivity. ); } /*************************** NAVBAR - MEGAMENU PAGES ***************************/ export const pagesMegamenu = { id: 'pages', title: 'Pages', megaMenu: { type: MegaMenuType.MEGAMENU5, toggleBtn: { children: 'Pages' }, popperWidth: 860, menuItems: [ { title: 'General', itemsList: [ { title: 'About', link: { href: 'https://stage.saasable.io/about', ...linkProps } }, { title: 'Career', status: 'Pro' }, { title: 'Privacy Policy', link: { href: PAGE_PATH.privacyPolicyPage, ...linkProps } }, { title: 'Contact Us', status: 'Pro' }, { title: 'FAQs', status: 'Pro' }, { title: 'Pricing', status: 'Pro' } ] }, { title: 'Maintenance', itemsList: [ { title: 'Coming Soon', status: 'Pro' }, { title: 'Error 404', link: { href: PRIVIEW_PATH.error404, ...linkProps } }, { title: 'Error 500', link: { href: PRIVIEW_PATH.error500, ...linkProps } }, { title: 'Under Maintenance', status: 'Pro' } ] }, { title: 'External', itemsList: [ { title: 'Blog', link: { href: 'https://blog.saasable.io/', ...linkProps } }, { title: 'Documentation', link: { href: DOCS_URL, ...linkProps } }, { title: 'Support', link: { href: branding.company.socialLink.support, ...linkProps } }, { title: 'Discord', link: { href: branding.company.socialLink.discord, ...linkProps } }, { title: 'Terms & Conditions', link: { href: 'https://mui.com/store/terms/', ...linkProps } } ] } ], bannerData: } };