diff --git a/package.json b/package.json index a1265fb..bc0fc27 100644 --- a/package.json +++ b/package.json @@ -24,12 +24,13 @@ "@apollo/client": "^3.8.1", "@emotion/react": "^11.11.1", "@emotion/styled": "^11.11.0", + "@heroicons/react": "^2.0.18", "@mui/material": "^5.13.5", "@types/styled-components": "^5.1.0", "classnames": "^2.3.2", "clsx": "^2.0.0", "focus-trap-react": "^10.1.4", - "framer-motion": "^10.12.18", + "framer-motion": "^10.16.1", "graphql": "^16.8.0", "i18next": "^23.4.5", "inquirer-fuzzy-path": "^2.3.0", diff --git a/src/app/(public)/about/work/page.tsx b/src/app/(public)/about/work/page.tsx index 701f948..99a1ac6 100644 --- a/src/app/(public)/about/work/page.tsx +++ b/src/app/(public)/about/work/page.tsx @@ -2,7 +2,7 @@ import Image from 'next/image'; import * as React from 'react'; import ReactMarkdown from 'react-markdown'; -import Heading from '@/components/atoms/Heading'; +import Heading from '@/components/atoms/headings/Heading'; import Education from '@/components/organisms/about-work/Education'; import Intro from '@/components/organisms/about-work/Intro'; import Languages from '@/components/organisms/about-work/Languages'; diff --git a/src/app/(public)/layout-client.tsx b/src/app/(public)/layout-client.tsx index 7054401..ebaece5 100644 --- a/src/app/(public)/layout-client.tsx +++ b/src/app/(public)/layout-client.tsx @@ -1,19 +1,26 @@ 'use client'; -import { ThemeProvider } from 'next-themes'; +import { ThemeProvider as NextThemeProvider } from 'next-themes'; import type { PropsWithChildren } from 'react'; +import MuiThemeProvider from '@/components/helpers/MuiThemeProvider'; import Footer from '@/components/layout/Footer'; import Header from '@/components/layout/Header'; export default function LayoutClient({ children }: PropsWithChildren) { return ( - -
+ + +
-
{children}
+
{children}
-