Commit 90cfbf35 authored by 李虞帆's avatar 李虞帆

fix:ドキュメント整備

parent 2b07d123
...@@ -14,4 +14,16 @@ ...@@ -14,4 +14,16 @@
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
\ No newline at end of file
# IDE/エディタ関連
.idea/
.vscode/
*.swp
# OS関連
.DS_Store
Thumbs.db
# ログファイル
*.log
\ No newline at end of file
...@@ -6,6 +6,10 @@ Udemyで学んだReactの知識を活かして、既存の採用サイトをリ ...@@ -6,6 +6,10 @@ Udemyで学んだReactの知識を活かして、既存の採用サイトをリ
レトロな見た目から最新のデザインへ、基本的なReactの機能実装からパフォーマンスチューニングまで、 レトロな見た目から最新のデザインへ、基本的なReactの機能実装からパフォーマンスチューニングまで、
実践的なスキルを身につけることを目的としています。 実践的なスキルを身につけることを目的としています。
## 🎯 目的
このプロジェクトは以下を目的としています:
- Reactの実践的な学習
-
## 🚀 技術スタック ## 🚀 技術スタック
- **フロントエンド** - **フロントエンド**
...@@ -40,13 +44,14 @@ src/ ...@@ -40,13 +44,14 @@ src/
### 前提条件 ### 前提条件
- Node.js (v14以上) - Node.js (v14以上)
- npm (v6以上) - npm (v6以上)
- Git
### インストール手順 ### インストール手順
1. **リポジトリのクローン** 1. **リポジトリのクローン**
```bash ```bash
git clone https://github.com/yourusername/winas-fake-corp.git git clone https://gitlab.winas.jp/winas-25-newgrads/winas-training-renewal-2025.git
cd winas-fake-corp cd winas-training-renewal-2025
``` ```
2. **依存パッケージのインストール** 2. **依存パッケージのインストール**
...@@ -59,6 +64,11 @@ npm install ...@@ -59,6 +64,11 @@ npm install
npm start npm start
``` ```
### 推奨開発ツール
- VSCode
- ESLint extension
- Prettier extension
## 🎨 デザインガイドライン ## 🎨 デザインガイドライン
### カラーパレット ### カラーパレット
...@@ -113,9 +123,9 @@ npm run build ...@@ -113,9 +123,9 @@ npm run build
4. ブランチをプッシュ (`git push origin feature/amazing-feature`) 4. ブランチをプッシュ (`git push origin feature/amazing-feature`)
5. プルリクエストを作成 5. プルリクエストを作成
## 📫 サポート ## 📫 サポート
質問や提案がありましたら、伊藤さん or 先輩たちに聞いてくださいー! 質問や提案がありましたら、伊藤さん or 先輩たちに聞いてくださいー!
...@@ -2,12 +2,15 @@ ...@@ -2,12 +2,15 @@
"name": "winas-fake-corp", "name": "winas-fake-corp",
"version": "1.0.0", "version": "1.0.0",
"description": "ウィナスの採用サイトの偽コーポレーションプロジェクト - レトロなデザインで90年代風のUIを再現", "description": "ウィナスの採用サイトの偽コーポレーションプロジェクト - レトロなデザインで90年代風のUIを再現",
"private": true,
"main": "src/index.js", "main": "src/index.js",
"scripts": { "scripts": {
"start": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start", "start": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"build": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts build", "build": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
"test": "react-scripts test", "test": "react-scripts test",
"eject": "react-scripts eject" "eject": "react-scripts eject",
"lint": "eslint src/**/*.{js,jsx}",
"format": "prettier --write src/**/*.{js,jsx,css}"
}, },
"keywords": [ "keywords": [
"react", "react",
...@@ -41,5 +44,9 @@ ...@@ -41,5 +44,9 @@
"last 1 firefox version", "last 1 firefox version",
"last 1 safari version" "last 1 safari version"
] ]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
} }
} }
...@@ -4,7 +4,22 @@ module.exports = { ...@@ -4,7 +4,22 @@ module.exports = {
"./public/index.html", "./public/index.html",
], ],
theme: { theme: {
extend: {}, extend: {
colors: {
primary: '#008080',
secondary: '#c0c0c0',
accent: '#000080'
},
fontFamily: {
retro: ['"MS Sans Serif"', 'Arial', 'sans-serif']
}
},
},
variants: {
extend: {
opacity: ['disabled'],
cursor: ['disabled']
}
}, },
plugins: [], plugins: [],
}; };
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment