diff --git a/src/App.tsx b/src/App.tsx index cb5a9e8..b8622b8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,7 +2,7 @@ import React from "react"; import { Provider } from "react-redux"; import { Route, Routes } from "react-router-dom"; -import { MainLayout } from "@/common/layout/MainLayout"; +import { MainLayout } from "@/components/layout/MainLayout"; import HomePage from "@/pages/HomePage"; diff --git a/src/common/display/.gitkeep b/src/components/display/.gitkeep similarity index 100% rename from src/common/display/.gitkeep rename to src/components/display/.gitkeep diff --git a/src/common/feedback/.gitkeep b/src/components/feedback/.gitkeep similarity index 100% rename from src/common/feedback/.gitkeep rename to src/components/feedback/.gitkeep diff --git a/src/common/forms/.gitkeep b/src/components/forms/.gitkeep similarity index 100% rename from src/common/forms/.gitkeep rename to src/components/forms/.gitkeep diff --git a/src/common/forms/Button.tsx b/src/components/forms/Button.tsx similarity index 100% rename from src/common/forms/Button.tsx rename to src/components/forms/Button.tsx diff --git a/src/common/layout/.gitkeep b/src/components/layout/.gitkeep similarity index 100% rename from src/common/layout/.gitkeep rename to src/components/layout/.gitkeep diff --git a/src/common/layout/Footer.styled.ts b/src/components/layout/Footer.styled.ts similarity index 100% rename from src/common/layout/Footer.styled.ts rename to src/components/layout/Footer.styled.ts diff --git a/src/common/layout/Footer.tsx b/src/components/layout/Footer.tsx similarity index 76% rename from src/common/layout/Footer.tsx rename to src/components/layout/Footer.tsx index 5b13d48..2c0711c 100644 --- a/src/common/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,6 +1,6 @@ import React from "react"; -import { FooterContainer } from "@/common/layout/Footer.styled"; +import { FooterContainer } from "@/components/layout/Footer.styled"; const Footer: React.FC = () => { return ( diff --git a/src/common/layout/MainLayout.tsx b/src/components/layout/MainLayout.tsx similarity index 100% rename from src/common/layout/MainLayout.tsx rename to src/components/layout/MainLayout.tsx diff --git a/src/common/navigation/Navigation.styled.ts b/src/components/navigation/Navigation.styled.ts similarity index 100% rename from src/common/navigation/Navigation.styled.ts rename to src/components/navigation/Navigation.styled.ts diff --git a/src/common/navigation/Navigation.tsx b/src/components/navigation/Navigation.tsx similarity index 100% rename from src/common/navigation/Navigation.tsx rename to src/components/navigation/Navigation.tsx diff --git a/src/common/navigation/Pagination.styled.tsx b/src/components/navigation/Pagination.styled.tsx similarity index 100% rename from src/common/navigation/Pagination.styled.tsx rename to src/components/navigation/Pagination.styled.tsx diff --git a/src/common/navigation/Pagination.tsx b/src/components/navigation/Pagination.tsx similarity index 100% rename from src/common/navigation/Pagination.tsx rename to src/components/navigation/Pagination.tsx diff --git a/src/common/typography/.gitkeep b/src/components/typography/.gitkeep similarity index 100% rename from src/common/typography/.gitkeep rename to src/components/typography/.gitkeep diff --git a/src/common/typography/Text.tsx b/src/components/typography/Text.tsx similarity index 100% rename from src/common/typography/Text.tsx rename to src/components/typography/Text.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 06fc254..ecc4b28 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,6 +1,6 @@ import React from "react"; -import { Pagination } from "@/common/navigation/Pagination"; +import { Pagination } from "@/components/navigation/Pagination"; import { PageContainer, MainContent, StyledImage } from "@/pages/HomePage.styled";