refactor: relocate folders

This commit is contained in:
MAZE 2024-08-31 19:25:51 +03:30
parent a4a31dd43e
commit f3cea66847
35 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import { AnimatePresence } from 'framer-motion';
import { Category } from '@/components/category';
import { Category } from './category';
import { Donate } from './donate';
import type { Categories } from '@/data/types';

View file

@ -1,7 +1,7 @@
import { useState, useMemo, useCallback, useRef, useEffect } from 'react';
import { AnimatePresence, motion } from 'framer-motion';
import { Sound } from '@/components/sound';
import { Sound } from './sound';
import { useLocalStorage } from '@/hooks/use-local-storage';
import { cn } from '@/helpers/styles';
import { fade, scale, mix } from '@/lib/motion';

View file

@ -1,6 +1,6 @@
import { Container } from '@/components/container';
import { Menu } from '@/components/menu';
import { ScrollToTop } from '@/components/scroll-to-top';
import { Menu } from './menu';
import { ScrollToTop } from './scroll-to-top';
import styles from './toolbar.module.css';