diff --git a/README.md b/README.md index d3e4713..3a4a9a8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,37 @@ -# 프리무스 +# 프리무스 -아이디어 검증 툴 서비스 +> 💡 아이디어 검증 툴 서비스 + +
+

+ +[`https://primus.today`](https://primus-chi.vercel.app) + +

+
+ +## 🪐 Main Service + +#### `아이디어 툴` + +(자료 추가 예정) + +#### `아이디어 검증` + +#### `적극적 투자 지표` + +#### `결과 도출` + +
+ +## 🌝 Project + +#### `팀원` + +> 테오의 스프린트 17기 + +| [FE 스리](https://github.com/hanseulhee) | [BE 최롱](https://github.com/Choirong) | [FE 피기](https://github.com/03hoho03) | [FE 환두](https://github.com/chaduhwan) | +| :---------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------: | +| | | | | + +#### `기술 스택` diff --git a/app/layout.tsx b/app/layout.tsx index a4e9c63..4e840fe 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,9 +1,22 @@ +import type { Metadata } from 'next' +import logo from '../app/_assets/_images/logo.png' import Layout from './_components/layout' import Recoil from './_store/recoil' import './_style/globals.css' import './_style/variables.css' import Providers from './_utils/provider' +export const metadata: Metadata = { + title: '프리무스', + description: '아이디어 검증 툴 서비스', + viewport: { + width: 'device-width', + initialScale: 1, + userScalable: false, + }, + icons: { icon: logo.src }, +} + function RootLayout({ children, }: Readonly<{