Continuing to restructure

This commit is contained in:
James Ketr 2025-05-28 13:00:52 -07:00
parent ae2557d524
commit 168de8a2b9
4 changed files with 14 additions and 14 deletions

View File

@ -11,14 +11,14 @@ import InfoIcon from '@mui/icons-material/Info';
import { SxProps, Theme } from '@mui/material'; import { SxProps, Theme } from '@mui/material';
import {Header} from './Header'; import { Header } from 'components/layout/Header';
import { Scrollable } from './Scrollable'; import { Scrollable } from 'components/Scrollable';
import { Footer } from './Footer'; import { Footer } from 'components/layout/Footer';
import { Snack, SetSnackType } from './Snack'; import { Snack, SetSnackType } from 'components/Snack';
import { useUser } from './UserContext'; import { useUser } from 'components/UserContext';
import { User } from '../types/types'; import { User } from 'types/types';
import { getBackstoryDynamicRoutes } from './BackstoryRoutes'; import { getBackstoryDynamicRoutes } from 'components/BackstoryRoutes';
import { LoadingComponent } from "./LoadingComponent"; import { LoadingComponent } from "components/LoadingComponent";
type NavigationLinkType = { type NavigationLinkType = {
name: string; name: string;

View File

@ -30,13 +30,13 @@ import {
ExpandMore, ExpandMore,
} from '@mui/icons-material'; } from '@mui/icons-material';
import { NavigationLinkType } from './BackstoryLayout'; import { NavigationLinkType } from 'components/layout/BackstoryLayout';
import { Beta } from './Beta'; import { Beta } from 'components/Beta';
import './Header.css'; import 'components/layout/Header.css';
import { useUser } from './UserContext'; import { useUser } from 'components/UserContext';
// import { Candidate, Employer } from '../types/types'; // import { Candidate, Employer } from '../types/types';
import { SetSnackType } from './Snack'; import { SetSnackType } from 'components/Snack';
import { CopyBubble } from './CopyBubble'; import { CopyBubble } from 'components/CopyBubble';
// Styled components // Styled components
const StyledAppBar = styled(AppBar, { const StyledAppBar = styled(AppBar, {