-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from capstone-maru/dev
release: 0.4.0
- Loading branch information
Showing
67 changed files
with
1,142 additions
and
511 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:[email protected]&display=swap'); | ||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:[email protected]&display=swap'); | ||
@import url('https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css'); | ||
|
||
* { | ||
box-sizing: border-box; | ||
padding: 0; | ||
|
@@ -22,7 +26,9 @@ main { | |
width: 100%; | ||
height: calc(100% - 72px); | ||
max-height: fit-content; | ||
padding: 0 15rem; | ||
|
||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
a { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
import type { Metadata } from 'next'; | ||
import { Inter } from 'next/font/google'; | ||
import React from 'react'; | ||
import { ToastContainer } from 'react-toastify'; | ||
import 'react-toastify/dist/ReactToastify.css'; | ||
import './globals.scss'; | ||
|
||
import { | ||
StyledComponentsRegistry, | ||
AuthProvider, | ||
RecoilRootProvider, | ||
StyledComponentsRegistry, | ||
TanstackQueryProvider, | ||
AuthProvider, | ||
} from '@/app/lib/providers'; | ||
import { NavigationBar, FloatingChatting } from '@/components'; | ||
import { FloatingChatting, NavigationBar } from '@/components'; | ||
|
||
const inter = Inter({ subsets: ['latin'] }); | ||
|
||
|
@@ -26,21 +28,6 @@ export default function RootLayout({ | |
return ( | ||
<html lang="ko"> | ||
<head> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Baloo+2:[email protected]&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
as="style" | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:[email protected]&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<script | ||
async | ||
type="text/javascript" | ||
|
@@ -55,6 +42,7 @@ export default function RootLayout({ | |
<NavigationBar /> | ||
<main>{children}</main> | ||
<FloatingChatting /> | ||
<ToastContainer /> | ||
</AuthProvider> | ||
</StyledComponentsRegistry> | ||
</RecoilRootProvider> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.