forked from Archives/Athou_commafeed
use absolute imports
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Center, Title } from "@mantine/core"
|
||||
import { Logo } from "../components/Logo"
|
||||
import { Logo } from "components/Logo"
|
||||
|
||||
export function PageTitle() {
|
||||
return (
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
import { t } from "@lingui/macro"
|
||||
import { Anchor, Box, Center, Container, Divider, Group, Image, Title, useMantineColorScheme } from "@mantine/core"
|
||||
import { useMediaQuery } from "@mantine/hooks"
|
||||
import { client } from "app/client"
|
||||
import { Constants } from "app/constants"
|
||||
import { redirectToLogin, redirectToRegistration, redirectToRootCategory } from "app/slices/redirect"
|
||||
import { useAppDispatch, useAppSelector } from "app/store"
|
||||
import welcome_page_dark from "assets/welcome_page_dark.png"
|
||||
import welcome_page_light from "assets/welcome_page_light.png"
|
||||
import { ActionButton } from "components/ActionButtton"
|
||||
import { ButtonToolbar } from "components/ButtonToolbar"
|
||||
import { useAsyncCallback } from "react-async-hook"
|
||||
import { SiGithub, TbKey, TbUserPlus } from "react-icons/all"
|
||||
import { SiTwitter } from "react-icons/si"
|
||||
import { TbClock, TbMoon, TbSun } from "react-icons/tb"
|
||||
import { client } from "../app/client"
|
||||
import { Constants } from "../app/constants"
|
||||
import { redirectToLogin, redirectToRegistration, redirectToRootCategory } from "../app/slices/redirect"
|
||||
import { useAppDispatch, useAppSelector } from "../app/store"
|
||||
import { ActionButton } from "../components/ActionButtton"
|
||||
import { ButtonToolbar } from "../components/ButtonToolbar"
|
||||
import { PageTitle } from "./PageTitle"
|
||||
|
||||
export function WelcomePage() {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { Trans } from "@lingui/macro"
|
||||
import { Container, Tabs } from "@mantine/core"
|
||||
import { CustomCss } from "components/settings/CustomCss"
|
||||
import { DisplaySettings } from "components/settings/DisplaySettings"
|
||||
import { ProfileSettings } from "components/settings/ProfileSettings"
|
||||
import { TbBoxMargin, TbPhoto, TbUser } from "react-icons/tb"
|
||||
import { CustomCss } from "../../components/settings/CustomCss"
|
||||
|
||||
export function SettingsPage() {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user