diff --git a/src/components/layout/footer.tsx b/src/components/layout/footer.tsx index 4525e60..c788c93 100644 --- a/src/components/layout/footer.tsx +++ b/src/components/layout/footer.tsx @@ -1,10 +1,9 @@ import Image from 'next/image'; import Link from 'next/link'; +import clarity from '@/img/Clarity.png'; import { GitHub } from '@mui/icons-material'; import { Box, Button } from '@mui/material'; -import clarity from '../../img/Clarity.png'; - /** * Footer with Clarity logo & link to repo * @returns Footer diff --git a/src/components/layout/layout.tsx b/src/components/layout/layout.tsx index a969b50..2c0d110 100644 --- a/src/components/layout/layout.tsx +++ b/src/components/layout/layout.tsx @@ -2,10 +2,9 @@ import { useTheme } from '@mui/material'; import Box from '@mui/material/Box'; import { Toaster } from 'react-hot-toast'; +import { Footer } from '@/components/layout/footer'; import { Navbar } from '@/components/layout/navbar'; -import { Footer } from './footer'; - interface Props { children: React.ReactNode; }