From d3f9dd3d2522444726f1dd594599f38d94282dcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Dere=C5=BEi=C4=87?= Date: Fri, 16 Feb 2024 15:52:43 +0100 Subject: [PATCH] fixed imports of all moved files --- app/[locale]/login/page.tsx | 2 +- app/[locale]/page.tsx | 6 +++--- app/[locale]/policy/page.tsx | 6 +++--- app/[locale]/terms/page.tsx | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/[locale]/login/page.tsx b/app/[locale]/login/page.tsx index 054cadf..a476278 100644 --- a/app/[locale]/login/page.tsx +++ b/app/[locale]/login/page.tsx @@ -2,7 +2,7 @@ import { FC } from 'react'; import { Main } from '@/app/ui/Main'; import { authConfig } from "@/app/lib/auth"; -import { SignInButton } from '../ui/SignInButton'; +import { SignInButton } from '@/app/ui/SignInButton'; import Image from 'next/image'; type Provider = { diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index 6505d33..92efeca 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -1,7 +1,7 @@ import { FC, Suspense } from 'react'; -import { Main } from './ui/Main'; -import HomePage from './ui/HomePage'; -import { MonthCardSkeleton } from './ui/MonthCardSkeleton'; +import { Main } from '@/app/ui/Main'; +import HomePage from '@/app/ui/HomePage'; +import { MonthCardSkeleton } from '@/app/ui/MonthCardSkeleton'; export interface PageProps { searchParams?: { diff --git a/app/[locale]/policy/page.tsx b/app/[locale]/policy/page.tsx index ac61ac6..e64e0ac 100644 --- a/app/[locale]/policy/page.tsx +++ b/app/[locale]/policy/page.tsx @@ -1,6 +1,6 @@ -import { Main } from "../ui/Main"; -import { PageFooter } from "../ui/PageFooter"; -import { PageHeader } from "../ui/PageHeader"; +import { Main } from "@/app/ui/Main"; +import { PageFooter } from "@/app/ui/PageFooter"; +import { PageHeader } from "@/app/ui/PageHeader"; const ConsentPage = () =>
diff --git a/app/[locale]/terms/page.tsx b/app/[locale]/terms/page.tsx index 761231e..41cde7a 100644 --- a/app/[locale]/terms/page.tsx +++ b/app/[locale]/terms/page.tsx @@ -1,4 +1,4 @@ -import { Main } from "../ui/Main"; +import { Main } from "@/app/ui/Main"; const TermsPage = () =>