Skip to content

Commit f53a0c8

Browse files
authored
Merge pull request #26 from Kusitms-28th-Kobaco-B/feat/#21
[feat] 광고 카피 생성 페이지
2 parents b2567ce + c43aca2 commit f53a0c8

File tree

19 files changed

+1138
-396
lines changed

19 files changed

+1138
-396
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"eslint-config-airbnb": "^19.0.4",
2222
"eslint-config-airbnb-typescript": "^18.0.0",
2323
"eslint-config-prettier": "^9.1.0",
24-
"faker": "^6.6.6",
2524
"framer-motion": "^11.0.8",
2625
"next": "14.1.0",
2726
"react": "^18",

public/adCopy/arrow-down.svg

Lines changed: 3 additions & 0 deletions
Loading

public/adCopy/arrow-right.svg

Lines changed: 7 additions & 0 deletions
Loading

public/adCopy/arrow-up.svg

Lines changed: 7 additions & 0 deletions
Loading

public/adCopy/bookmark.svg

Lines changed: 7 additions & 0 deletions
Loading

public/adCopy/edit.svg

Lines changed: 8 additions & 0 deletions
Loading

src/app/adCopy/page.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import AdCopyPage from "@/components/adCopy/AdCopyPage";
2+
import NOSSR from "@/components/common/NOSSR";
3+
4+
const AdCopy = async () => {
5+
return (
6+
<NOSSR>
7+
<AdCopyPage />
8+
</NOSSR>
9+
);
10+
};
11+
12+
export default AdCopy;

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default function RootLayout({
3232
<ThemeProvider theme={theme}>
3333
<Navbar />
3434
{children}
35-
<Footer />
35+
{/* <Footer /> */}
3636
</ThemeProvider>
3737
</RecoilContextProvider>
3838
</body>

src/app/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import NOSSR from "@/components/common/NOSSR";
2+
import Footer from "@/components/footer/Footer";
23
import MainPage from "@/components/main/MainPage";
34

45
const Main = async () => {
56
return (
67
<NOSSR>
78
<MainPage />
9+
<Footer />
810
</NOSSR>
911
);
1012
};

src/app/trend/people/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import NOSSR from "@/components/common/NOSSR";
2+
import Footer from "@/components/footer/Footer";
23
import TrendPage from "@/components/trend/TrendPage";
34

45
const Trend = async () => {
56
return (
67
<NOSSR>
78
<TrendPage />
9+
<Footer />
810
</NOSSR>
911
);
1012
};

0 commit comments

Comments
 (0)