Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
winas-training-renewal-2025
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
winas-25-newgrads
winas-training-renewal-2025
Commits
90cfbf35
Commit
90cfbf35
authored
Jan 30, 2025
by
李虞帆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:ドキュメント整備
parent
2b07d123
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
7 deletions
+51
-7
.gitignore
.gitignore
+13
-1
README.md
README.md
+14
-4
package.json
package.json
+8
-1
tailwind.config.js
tailwind.config.js
+16
-1
No files found.
.gitignore
View file @
90cfbf35
...
...
@@ -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
README.md
View file @
90cfbf35
...
...
@@ -6,6 +6,10 @@ Udemyで学んだReactの知識を活かして、既存の採用サイトをリ
レトロな見た目から最新のデザインへ、基本的なReactの機能実装からパフォーマンスチューニングまで、
実践的なスキルを身につけることを目的としています。
## 🎯 目的
このプロジェクトは以下を目的としています:
-
Reactの実践的な学習
-
## 🚀 技術スタック
-
**フロントエンド**
...
...
@@ -40,13 +44,14 @@ src/
### 前提条件
-
Node.js (v14以上)
-
npm (v6以上)
-
Git
### インストール手順
1.
**リポジトリのクローン**
```
bash
git clone https://git
hub.com/yourusername/winas-fake-corp
.git
cd
winas-
fake-corp
git clone https://git
lab.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 先輩たちに聞いてくださいー!
package.json
View file @
90cfbf35
...
...
@@ -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"
}
}
tailwind.config.js
View file @
90cfbf35
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment