refactor: move APP import from data to configs for better organization

This commit is contained in:
Ardeman
2025-02-25 06:07:45 +08:00
parent 5227204791
commit 0c38a775e3
10 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { Link } from 'react-router'
import { APP } from '~/data/meta'
import { APP } from '~/configs/meta'
import { COPYRIGHT_MENU, FOOTER_MENU } from './menu'
+1 -1
View File
@@ -1,7 +1,7 @@
import { Link } from 'react-router'
import { Button } from '~/components/ui/button'
import { APP } from '~/data/meta'
import { APP } from '~/configs/meta'
export const FooterNewsletter = () => {
return (
+1 -1
View File
@@ -1,8 +1,8 @@
import { Link } from 'react-router'
import { Button } from '~/components/ui/button'
import { APP } from '~/configs/meta'
import { useNewsContext } from '~/contexts/news'
import { APP } from '~/data/meta'
export const HeaderTop = () => {
const { setIsLoginOpen } = useNewsContext()