https://luana-s-miruto.netlify.app/
このプロジェクトは、ReactとTailwind CSSを使用して構築された、美容室「Luana・S・Miruto」のウェブサイトです。
(トップへ)
| 言語・フレームワーク | バージョン |
|---|---|
| Node.js | 16.17.0+ |
| React | 19.1.0 |
| Vite | 6.3.5 |
| Tailwind CSS | 3.3.5 |
その他のパッケージのバージョンは package.json を参照してください。
(トップへ)
/
├── .gitignore
├── eslint.config.js
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── README.md
├── tailwind.config.js
├── vite.config.js
├── public/
│ └── favicon.svg
└── src/
├── App.css
├── App.jsx
├── index.css
├── main.jsx
├── MenuPage.jsx
├── assets/
│ ├── react.svg
│ └── Images/
└── components/
├── About.jsx
├── Button.jsx
├── Footer.jsx
├── Guidance.jsx
├── Header.jsx
├── HeroSlider.jsx
├── IntroText.jsx
├── ScrollToTop.jsx
└── SliderDots.jsx
(トップへ)
-
リポジトリをクローンします
git clone https://github.com/your_username/Luana.git cd Luana -
依存関係をインストールします
npm install
-
開発サーバーを起動します
npm run dev
http://localhost:5173 で開発サーバーが起動します。
(トップへ)
npm run dev: 開発モードでアプリケーションを起動します。npm run build: 本番用にアプリケーションをビルドします。npm run lint: ESLintを実行してコードをチェックします。npm run preview: ビルドされたアプリケーションをローカルでプレビューします。
(トップへ)
