From 6d5942d6a3bb5170844cfbf1543c57db004f455d Mon Sep 17 00:00:00 2001 From: SeieunYoo Date: Sun, 24 Nov 2024 23:06:40 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20components=20=EA=B2=BD=EB=A1=9C=20panda?= =?UTF-8?q?=20config=EC=97=90=20=EC=B6=94=EA=B0=80,=20constant=20=EC=A0=88?= =?UTF-8?q?=EB=8C=80=EA=B2=BD=EB=A1=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/wow-docs/app/overview/page.tsx | 3 +-- apps/wow-docs/app/page.tsx | 3 +-- apps/wow-docs/components/NavItem.tsx | 2 +- apps/wow-docs/{app => }/constants/routePath.ts | 0 apps/wow-docs/panda.config.ts | 2 +- apps/wow-docs/tsconfig.json | 3 ++- 6 files changed, 6 insertions(+), 7 deletions(-) rename apps/wow-docs/{app => }/constants/routePath.ts (100%) diff --git a/apps/wow-docs/app/overview/page.tsx b/apps/wow-docs/app/overview/page.tsx index b9f65bcf..4eea568f 100644 --- a/apps/wow-docs/app/overview/page.tsx +++ b/apps/wow-docs/app/overview/page.tsx @@ -1,12 +1,11 @@ import Space from "@components/Space"; import Text from "@components/Text"; +import { routePath } from "@constants/routePath"; import { css } from "@styled-system/css"; import Image from "next/image"; import Link from "next/link"; import { RightArrow } from "wowds-icons"; -import { routePath } from "@/constants/routePath"; - import OverviewBackgroundImage from "../../public/overview-background.png"; const OverviewPage = () => { diff --git a/apps/wow-docs/app/page.tsx b/apps/wow-docs/app/page.tsx index fcdbaad2..1f4df605 100644 --- a/apps/wow-docs/app/page.tsx +++ b/apps/wow-docs/app/page.tsx @@ -1,7 +1,6 @@ +import { routePath } from "@constants/routePath"; import { redirect } from "next/navigation"; -import { routePath } from "@/constants/routePath"; - const Home = () => { return redirect(routePath.overview); }; diff --git a/apps/wow-docs/components/NavItem.tsx b/apps/wow-docs/components/NavItem.tsx index 85b1f3d5..8e2ac0c3 100644 --- a/apps/wow-docs/components/NavItem.tsx +++ b/apps/wow-docs/components/NavItem.tsx @@ -61,7 +61,7 @@ const NavItem = ({ href, icon: Icon, alt, label, children }: NavItemProps) => {