8000 feat: move Main to solution-pass directory · codeisneverodd/home@4fcf9ea · GitHub
[go: up one dir, main page]

Skip to content

Commit 4fcf9ea

Browse files
feat: move Main to solution-pass directory
1 parent d67e4a7 commit 4fcf9ea

File tree

8 files changed

+15
-0
lines changed

8 files changed

+15
-0
lines changed
File renamed without changes.
File renamed without changes.

src/pages/solution-pass/index.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import MainLayout from "@/lib/@common/layouts/MainLayout";
2+
import Aside from "@/lib/solution-pass/Aside";
3+
import Main from "@/lib/solution-pass/Main";
4+
import { Flex } from "@chakra-ui/react";
5+
6+
export default function Home() {
7+
return (
8+
<MainLayout title="Solution Pass">
9+
<Flex w="full" direction={{ sm: "column-reverse", md: "row" }} pt="20px">
10+
<Main />
11+
<Aside />
12+
</Flex>
13+
</MainLayout>
14+
);
15+
}

0 commit comments

Comments
 (0)
0