Developer focused on DeFi integration with a background in finance and a deep understanding of crypto systems. This portfolio showcases my journey as a developer, built with modern web technologies including SvelteKit and Tailwind CSS for a smooth, responsive experience.
Clone the repository
git clone https://github.com/[USERNAME]/resume.git
Install dependencies
cd resume
npm install
Start development server
npm run dev
Build for production
npm run build
/
├── src/
│ ├── components/
│ │ ├── About.svelte
│ │ ├── Contact.svelte
│ │ ├── ContactModal.svelte
│ │ ├── Experience.svelte
│ │ ├── Header.svelte
│ │ ├── Intro.svelte
│ │ ├── Loader.svelte
│ │ └── Projects.svelte
│ ├── lib/
│ │ └── types.ts
│ ├── routes/
│ │ ├── +layout.svelte
│ │ ├── +page.svelte
│ │ └── api/
│ │ └── contact/
│ │ └── +server.ts
│ ├── stores/
│ │ ├── loading.ts
│ │ └── navigation.ts
│ ├── app.css
│ ├── app.html
│ └── satoshi.css
└── static/
├── screenshot1.png
├── screenshot2.png
├── screenshot3.png
└── og-image.jpg
Feel free to reach out if you have any questions or just want to connect!
This project is open source and available under the MIT License.
This project is configured for deployment on Vercel. To deploy:
Install Vercel CLI:
npm install -g vercel
Configure SvelteKit adapter in svelte.config.js
:
```javascript
import adapter from '@sveltejs/adapter-vercel';
export default { kit: { adapter: adapter() } };
3. Deploy to Vercel:
```bash
vercel