建立专业的开发者作品集网站
欢迎来到我的**作品集网站**!该网站展示了我的技能、经验、教育、项目以及如何与我联系。它使用**React**和**Vite**构建,可提供快速、现代的网络体验。您可以探索我的作品,了解我的旅程,并直接与我联系。
演示

实时预览
在此查看投资组合网站的实时预览:
现场演示
🎯 项目结构
portfolio/
├── node_modules/
├── public/
├── src/
│ ├── assets/
│ ├── components/
│ │ ├── ui/
│ │ │ ├── Reusable Components/
│ │ │ │ ├── badge.jsx
│ │ │ │ ├── button.jsx
│ │ │ │ ├── card.jsx
│ │ │ │ ├── EducationLoader.jsx
│ │ │ │ ├── evervault-card.jsx
│ │ │ │ ├── flip-words.jsx
│ │ │ │ ├── icon-cloud.jsx
│ │ │ │ ├── meteors.jsx
│ │ │ │ ├── sparkles-text.jsx
│ │ │ │ └── tooltip.jsx
│ │ │ │
│ │ │ ├── Main Components/
│ │ │ │ ├── AnimatedGrid.jsx
│ │ │ │ ├── Contact.jsx
│ │ │ │ ├── Education.jsx
│ │ │ │ ├── enhanced-portfolio-card.jsx
│ │ │ │ ├── Experience.jsx
│ │ │ │ ├── global.jsx
│ │ │ │ ├── Header.jsx
│ │ │ │ ├── Hero.jsx
│ │ │ │ ├── Home.jsx
│ │ │ │ ├── PortfolioPage.jsx
│ │ │ │ ├── Projects.jsx
│ │ │ │ └── Skills.jsx
│ │ └── lib/
│ ├── App.jsx
│ └── main.jsx
├── Configuration Files/
│ ├── .eslintrc.js
│ ├── .gitignore
│ ├── components.json
│ ├── index.html
│ ├── jsconfig.json
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.js
│ ├── README.md
│ ├── tailwind.config.js
└── vite.config.js投资组合部分
投资组合网站由以下部分组成:
💻 使用的技术
安装⬇️
您需要下载**Git**和**Node**来运行该项目。
Git
git --version
节点
node --version
入门 🎯
分叉并克隆存储库🚀
git clone https://github.com/seraprogrammer/portfolio.git
导航到项目目录
克隆存储库后,将目录更改为项目文件夹:
cd portfolio
安装依赖项⚙️
从项目的根目录安装必要的软件包:
npm install
运行开发服务器
启动开发服务器来实时查看你的项目:
npm run dev