feat: add admin and dashboard layouts with context for improved structure and functionality

This commit is contained in:
Ardeman
2025-02-23 10:11:47 +08:00
parent 2435f9a5d5
commit 8b1af335ec
10 changed files with 188 additions and 17 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import type { JSX } from 'react'
import type { JSX, SVGProps } from 'react'
import { FacebookIcon } from '~/components/icons/facebook'
import { InstagramIcon } from '~/components/icons/instagram'
@@ -42,7 +42,7 @@ type FooterMenu = {
title: string
url: string
icon?: (
properties: JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>,
properties: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
) => JSX.Element
}>
}