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

fix:ドキュメント整備

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