diff --git a/src/App.tsx b/src/App.tsx
index ba70394..eaa3b21 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,5 +1,20 @@
+// Modules
+import { Routes, Route } from "react-router-dom";
+
+// Styles
+import "./styles/style.scss";
+
+// Pages
+import Main from "./pages/Main";
+
const App = () => {
- return
;
+ return (
+
+
+ } />
+
+
+ );
};
export default App;
diff --git a/src/styles/_general.scss b/src/styles/_general.scss
new file mode 100644
index 0000000..af919f9
--- /dev/null
+++ b/src/styles/_general.scss
@@ -0,0 +1,39 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ scroll-behavior: smooth;
+}
+
+html {
+ font-size: 62.5%;
+ min-height: 100vh;
+}
+
+body {
+ min-height: 100vh;
+}
+
+#root {
+ min-height: 100vh;
+}
+
+.App {
+ min-height: 100vh;
+}
+
+ul {
+ list-style-type: none;
+}
+
+input,
+button {
+ background: none;
+ outline: none;
+ border: none;
+}
+
+a {
+ color: #000;
+ text-decoration: none;
+}
diff --git a/src/styles/_variables.scss b/src/styles/_variables.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/styles/style.scss b/src/styles/style.scss
new file mode 100644
index 0000000..ea36480
--- /dev/null
+++ b/src/styles/style.scss
@@ -0,0 +1,2 @@
+@import "./variables";
+@import "./general";