27 lines
807 B
Batchfile
27 lines
807 B
Batchfile
@echo off
|
|
echo Copying React components to coresync-react-project...
|
|
echo.
|
|
|
|
REM Create components directory if it doesn't exist
|
|
if not exist "src\components" mkdir "src\components"
|
|
|
|
echo Components directory created/verified.
|
|
echo.
|
|
echo Please copy the following files manually:
|
|
echo.
|
|
echo From src/components/ to coresync-react-project/src/components/:
|
|
echo - Services.jsx and Services.css
|
|
echo - About.jsx and About.css
|
|
echo - Achievements.jsx and Achievements.css
|
|
echo - Portfolio.jsx and Portfolio.css
|
|
echo - Contact.jsx and Contact.css
|
|
echo - Footer.jsx and Footer.css
|
|
echo.
|
|
echo The following files are already created:
|
|
echo - Header.jsx and Header.css
|
|
echo - Hero.jsx and Hero.css
|
|
echo - App.jsx and App.css
|
|
echo - main.jsx and index.css
|
|
echo - package.json, vite.config.js, index.html
|
|
echo.
|
|
pause |