aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/templates/layout
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/templates/layout')
-rw-r--r--src/components/templates/layout/layout.module.scss6
-rw-r--r--src/components/templates/layout/layout.test.tsx2
-rw-r--r--src/components/templates/layout/layout.tsx30
3 files changed, 19 insertions, 19 deletions
diff --git a/src/components/templates/layout/layout.module.scss b/src/components/templates/layout/layout.module.scss
index 1080732..5b89341 100644
--- a/src/components/templates/layout/layout.module.scss
+++ b/src/components/templates/layout/layout.module.scss
@@ -1,6 +1,6 @@
-@use "@styles/abstracts/functions" as fun;
-@use "@styles/abstracts/mixins" as mix;
-@use "@styles/abstracts/placeholders";
+@use "../../../styles/abstracts/functions" as fun;
+@use "../../../styles/abstracts/mixins" as mix;
+@use "../../../styles/abstracts/placeholders";
.header {
border-bottom: fun.convert-px(3) solid var(--color-border-light);
diff --git a/src/components/templates/layout/layout.test.tsx b/src/components/templates/layout/layout.test.tsx
index eab7a2a..6b3818e 100644
--- a/src/components/templates/layout/layout.test.tsx
+++ b/src/components/templates/layout/layout.test.tsx
@@ -1,4 +1,4 @@
-import { render, screen } from '@tests/utils';
+import { render, screen } from '../../../../tests/utils';
import Layout from './layout';
const body =
diff --git a/src/components/templates/layout/layout.tsx b/src/components/templates/layout/layout.tsx
index 2a10a30..cf35b5c 100644
--- a/src/components/templates/layout/layout.tsx
+++ b/src/components/templates/layout/layout.tsx
@@ -1,22 +1,22 @@
-import ButtonLink from '@components/atoms/buttons/button-link';
-import Career from '@components/atoms/icons/career';
-import CCBySA from '@components/atoms/icons/cc-by-sa';
-import ComputerScreen from '@components/atoms/icons/computer-screen';
-import Envelop from '@components/atoms/icons/envelop';
-import Home from '@components/atoms/icons/home';
-import PostsStack from '@components/atoms/icons/posts-stack';
-import Main from '@components/atoms/layout/main';
-import NoScript from '@components/atoms/layout/no-script';
-import Footer, { type FooterProps } from '@components/organisms/layout/footer';
-import Header, { type HeaderProps } from '@components/organisms/layout/header';
-import { type NextPageWithLayoutOptions } from '@ts/types/app';
-import useRouteChange from '@utils/hooks/use-route-change';
-import useScrollPosition from '@utils/hooks/use-scroll-position';
-import useSettings from '@utils/hooks/use-settings';
import Script from 'next/script';
import { FC, ReactElement, ReactNode, useRef, useState } from 'react';
import { useIntl } from 'react-intl';
import { Person, SearchAction, WebSite, WithContext } from 'schema-dts';
+import { type NextPageWithLayoutOptions } from '../../../types/app';
+import useRouteChange from '../../../utils/hooks/use-route-change';
+import useScrollPosition from '../../../utils/hooks/use-scroll-position';
+import useSettings from '../../../utils/hooks/use-settings';
+import ButtonLink from '../../atoms/buttons/button-link';
+import Career from '../../atoms/icons/career';
+import CCBySA from '../../atoms/icons/cc-by-sa';
+import ComputerScreen from '../../atoms/icons/computer-screen';
+import Envelop from '../../atoms/icons/envelop';
+import Home from '../../atoms/icons/home';
+import PostsStack from '../../atoms/icons/posts-stack';
+import Main from '../../atoms/layout/main';
+import NoScript from '../../atoms/layout/no-script';
+import Footer, { type FooterProps } from '../../organisms/layout/footer';
+import Header, { type HeaderProps } from '../../organisms/layout/header';
import photo from '/public/armand-philippot.jpg';
import styles from './layout.module.scss';