Skip to content

Commit

Permalink
Merge pull request #15 from final-project-temporaryName/chore/design-…
Browse files Browse the repository at this point in the history
…system

[송규경] Chore/Design: Design System 세팅 및 Nested CSS warning 해결
  • Loading branch information
Ssong-Q authored Jan 25, 2024
2 parents cd397f1 + 062ee1b commit 6beb387
Show file tree
Hide file tree
Showing 11 changed files with 177 additions and 222 deletions.
36 changes: 31 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@tanstack/react-query": "^5.17.19",
"@tanstack/react-query-devtools": "^5.17.21",
"axios": "^1.6.5",
Expand Down
1 change: 1 addition & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
plugins: {
'tailwindcss/nesting': {},
tailwindcss: {},
autoprefixer: {},
},
Expand Down
Empty file.
3 changes: 3 additions & 0 deletions src/app/(auth)/[username]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function Home() {
return <main className="flex min-h-screen flex-col items-center justify-between p-24">마이 페이지</main>;
}
Empty file.
10 changes: 7 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import { Noto_Sans_KR } from 'next/font/google';
import '../styles/globals.css';
import ReactQueryProviders from '@/utils/react-query-provider';

const inter = Inter({ subsets: ['latin'] });
// Noto sans 폰트 적용
const notoSansKr = Noto_Sans_KR({
preload: false,
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
});

export const metadata: Metadata = {
title: 'Team Six',
Expand All @@ -17,7 +21,7 @@ export default function RootLayout({
}>) {
return (
<html lang="ko">
<body className={inter.className}>
<body className={notoSansKr.className}>
<ReactQueryProviders>{children}</ReactQueryProviders>
</body>
</html>
Expand Down
1 change: 1 addition & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export default function Home() {
<main className="flex min-h-screen flex-col items-center justify-between p-24">
main
<p>dev 브랜치 자동 배포 테스트용 텍스트입니다..!</p>
<p className="font-light">test</p>
</main>
);
}
Empty file added src/components/.gitkeep
Empty file.
Loading

0 comments on commit 6beb387

Please sign in to comment.