This is my personal resume website built with React and hosted on Azure Static Web Apps. The site features a clean, responsive design and integrates with Azure Functions for backend services.
🔗 Live Demo: lemon-desert-05dc5301e.6.azurestaticapps.net
- Modern React Frontend:
- Built with functional components and React hooks
- Interactive UI with real-time feedback
- Smooth navigation with React Router
- Azure Integration:
- Hosted on Azure Static Web Apps
- Serverless backend with Azure Functions
- Visitor counter using Cosmos DB
- Responsive Design: Works on all device sizes
- AI-Powered Features:
- AI Chatbot: Interactive assistant that answers questions about my experience and skills
- Text Generation: Generate text using OpenAI's GPT-4
- Image Generation: Create images from text prompts using Stability AI
- Rate Limiting: API protection with Azure Table Storage
- Fallback Responses: Graceful degradation when services are unavailable
-
Frontend:
- React.js
- Bootstrap 5
- React Icons
-
Backend:
- Azure Functions (Node.js)
- Cosmos DB (for visitor counter)
- Azure Table Storage (for rate limiting)
- OpenAI API Integration
- Stability AI API Integration
- Comprehensive error handling and logging
-
DevOps:
- GitHub Actions for CI/CD
- Azure Static Web Apps for hosting
The AI Image Generator allows you to create images from text descriptions using Stability AI's Stable Diffusion model.
- Generate high-quality images from text prompts
- Supports various image dimensions
- Real-time generation status
- Download generated images
- Navigate to the "AI Projects" section
- Enter your image description in the text area
- Click "Generate Image"
- Wait for the image to generate
- Download the image using the download button
- Node.js (v14 or later)
- npm or yarn
- Azure CLI (for local development)
- Azure Functions Core Tools
-
Create a
.envfile in the root directory with your API keys:REACT_APP_STABILITY_API_KEY=your_stability_ai_key_here -
For local development, create a
local.settings.jsonin the/apidirectory:{ "IsEncrypted": false, "Values": { "FUNCTIONS_WORKER_RUNTIME": "node", "STABILITY_API_KEY": "your_stability_ai_key_here" }, "ConnectionStrings": {} }
-
Clone the repository:
git clone https://github.com/ajmalrasouli/ar-resume.git cd ar-resume -
Install dependencies:
npm install cd api npm install cd ..
-
Start the development server:
npm start
-
In a separate terminal, start the Azure Functions locally:
cd api func start
The application is automatically deployed to Azure Static Web Apps on push to the main branch.
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.