From b93551ec95d13032b7ad58f6a0dfa4ab93e3e725 Mon Sep 17 00:00:00 2001
From: hanseulhee <3021062@gmail.com>
Date: Mon, 8 Apr 2024 03:44:12 +0900
Subject: [PATCH] =?UTF-8?q?[#42]=20=EB=A9=94=ED=83=80=ED=83=9C=EA=B7=B8,?=
=?UTF-8?q?=20=EB=A6=AC=EB=93=9C=EB=AF=B8=20=EC=9E=91=EC=84=B1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
README.md | 38 ++++++++++++++++++++++++++++++++++++--
app/layout.tsx | 13 +++++++++++++
2 files changed, 49 insertions(+), 2 deletions(-)
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<{