-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update profile picture size and layout in home component
- Loading branch information
1 parent
1456866
commit 1e5adc8
Showing
4 changed files
with
45 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,60 @@ | ||
<section id="projects" class="py-2 pb-8"> | ||
<h1 class="text-4xl font-bold text-center mb-8">Projects</h1> | ||
<p class="text-gray-600 text-center mb-8">Here are some of the projects I have worked on. Click on the buttons to | ||
view the source code or live demo.</p> | ||
<section id="projects" class="py-8"> | ||
<h1 class="text-3xl md:text-4xl font-bold text-center mb-4">Projects</h1> | ||
<p class="text-gray-600 text-center mb-8 px-4">Here are some of the projects I have worked on. Click on the buttons to view the source code or live demo.</p> | ||
<div class="container mx-auto"> | ||
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 p-4"> | ||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 px-4"> | ||
<div class="bg-white shadow-md rounded-lg p-6"> | ||
<div class="mb-4"> | ||
<img src="images/projects/url-shortener-app.png" alt="Project 1" class="w-full h-auto rounded-lg" /> | ||
<img src="images/projects/url-shortener-app.png" alt="URL Shortener App" class="w-full h-auto rounded-lg" /> | ||
</div> | ||
<h2 class="text-2xl font-semibold mb-4">URL Shortener App</h2> | ||
<p class="text-gray-600 mb-4"> | ||
A simple URL shortener app built with Angular, Node.js, Express, and MongoDB. It allows users to shorten long | ||
URLs and track the number of clicks on the shortened URLs. | ||
A simple URL shortener app built with Angular, Node.js, Express, and MongoDB. It allows users to shorten long URLs and track the number of clicks on the shortened URLs. | ||
</p> | ||
<div class="flex space-x-4"> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Github | ||
</button> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Live Demo | ||
</button> | ||
<a href="https://github.com/your-github-repo" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Github</a> | ||
<a href="https://your-live-demo-url" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Live Demo</a> | ||
</div> | ||
</div> | ||
<div class="bg-white shadow-md rounded-lg p-6"> | ||
<div class="mb-4"> | ||
<img src="images/projects/expense-tracker-app.png" alt="Project 2" class="w-full h-auto rounded-lg" /> | ||
<img src="images/projects/expense-tracker-app.png" alt="Expense Tracker App" class="w-full h-auto rounded-lg" /> | ||
</div> | ||
<h2 class="text-2xl font-semibold mb-4"> | ||
Expense Tracker App | ||
</h2> | ||
<h2 class="text-2xl font-semibold mb-4">Expense Tracker App</h2> | ||
<p class="text-gray-600 mb-4"> | ||
A simple expense tracker app built with Angular, Node.js, Express, and MongoDB. It allows users to track | ||
their expenses. | ||
A simple expense tracker app built with Angular, Node.js, Express, and MongoDB. It allows users to track their expenses. | ||
</p> | ||
<div class="flex space-x-4"> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Github | ||
</button> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Live Demo | ||
</button> | ||
<a href="https://github.com/your-github-repo" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Github</a> | ||
<a href="https://your-live-demo-url" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Live Demo</a> | ||
</div> | ||
</div> | ||
<div class="bg-white shadow-md rounded-lg p-6"> | ||
<div class="mb-4"> | ||
<img src="images/projects/notes-app.png" alt="Project 3" class="w-full h-auto rounded-lg" /> | ||
<img src="images/projects/notes-app.png" alt="Notes App" class="w-full h-auto rounded-lg" /> | ||
</div> | ||
<h2 class="text-2xl font-semibold mb-4"> | ||
Notes App | ||
</h2> | ||
<h2 class="text-2xl font-semibold mb-4">Notes App</h2> | ||
<p class="text-gray-600 mb-4"> | ||
A simple notes app built with Angular, Node.js, Express, and MongoDB. It allows users to create, read, | ||
update, and delete notes. | ||
A simple notes app built with Angular, Node.js, Express, and MongoDB. It allows users to create, read, update, and delete notes. | ||
</p> | ||
<div class="flex space-x-4"> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Github | ||
</button> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Live Demo | ||
</button> | ||
<a href="https://github.com/your-github-repo" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Github</a> | ||
<a href="https://your-live-demo-url" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Live Demo</a> | ||
</div> | ||
</div> | ||
<div class="bg-white shadow-md rounded-lg p-6"> | ||
<div class="mb-4"> | ||
<img src="images/projects/task-management-app.png" alt="Project 3" class="w-full h-auto rounded-lg" /> | ||
<img src="images/projects/task-management-app.png" alt="Task Management App" class="w-full h-auto rounded-lg" /> | ||
</div> | ||
<h2 class="text-2xl font-semibold mb-4"> | ||
Task Management App | ||
</h2> | ||
<h2 class="text-2xl font-semibold mb-4">Task Management App</h2> | ||
<p class="text-gray-600 mb-4"> | ||
A simple task management app built with Angular, Node.js, Express, and MongoDB. It allows users to create, | ||
read, update, and delete tasks. | ||
A simple task management app built with Angular, Node.js, Express, and MongoDB. It allows users to create, read, update, and delete tasks. | ||
</p> | ||
<div class="flex space-x-4"> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Github | ||
</button> | ||
<button class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"> | ||
Live Demo | ||
</button> | ||
<a href="https://github.com/your-github-repo" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Github</a> | ||
<a href="https://your-live-demo-url" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600">Live Demo</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</section> |