diff --git a/src/app/components/Article.module.css b/src/app/components/Article.module.css
deleted file mode 100644
index 2517f15..0000000
--- a/src/app/components/Article.module.css
+++ /dev/null
@@ -1,14 +0,0 @@
-.container {
- display: flex;
- align-items: center;
- width: 100%;
- gap: 1rem;
-}
-
-.copy {
- flex: 1;
-}
-
-.example {
- flex: 1;
-}
\ No newline at end of file
diff --git a/src/app/components/Article.tsx b/src/app/components/Article.tsx
deleted file mode 100644
index fd1d7fa..0000000
--- a/src/app/components/Article.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import styles from './Article.module.css';
-
-export default function Article() {
- return (
-
-
-
-
- );
-}
diff --git a/src/app/components/NavBar.module.css b/src/app/components/NavBar.module.css
index 17d2d39..c74756d 100644
--- a/src/app/components/NavBar.module.css
+++ b/src/app/components/NavBar.module.css
@@ -2,8 +2,10 @@
display: flex;
justify-content: flex-end;
align-items: center;
- padding: 0 1rem;
+ padding: 1rem;
width: 100%;
+ max-width: 1450px;
+ margin: 0 auto;
}
.navList {
diff --git a/src/app/components/Section.module.css b/src/app/components/Section.module.css
new file mode 100644
index 0000000..323f54f
--- /dev/null
+++ b/src/app/components/Section.module.css
@@ -0,0 +1,20 @@
+.container {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ gap: 1rem;
+ border-bottom: 1px solid #848586;
+ padding: 5rem;
+}
+
+@media screen and (max-width: 1000px) {
+ .container {
+ flex-direction: column;
+ align-items: flex-start;
+ justify-content: center;
+ }
+}
+
+.container>article {
+ flex: 1;
+}
\ No newline at end of file
diff --git a/src/app/components/Section.tsx b/src/app/components/Section.tsx
new file mode 100644
index 0000000..f559fd0
--- /dev/null
+++ b/src/app/components/Section.tsx
@@ -0,0 +1,18 @@
+import styles from './Section.module.css';
+
+export default function Section({
+ copy,
+ example,
+}: {
+ copy: string;
+ example: string;
+}) {
+ return (
+
+ );
+}
diff --git a/src/app/components/SideBar.tsx b/src/app/components/SideBar.tsx
index 86b01e4..f27ba98 100644
--- a/src/app/components/SideBar.tsx
+++ b/src/app/components/SideBar.tsx
@@ -14,13 +14,11 @@ function TreeNode({ doc }: { doc: DocsStructure }) {
return (
{hasChildren ? (
-
-
setIsExpanded(!isExpanded)}
- className={styles.link}
- >
- {doc.title}
-
+
setIsExpanded(!isExpanded)}
+ className={styles.expandable}
+ >
+
{doc.title}
{isExpanded ? (