Skip to content

Commit

Permalink
Merge pull request #234 from ogomaemmanuel/design
Browse files Browse the repository at this point in the history
Design
  • Loading branch information
ogomaemmanuel committed Jan 11, 2024
2 parents edf7b63 + baefa8a commit 09c72f8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@

@Controller
public class UsersController {
private UserService userService;
private MaritalStatusRepository maritalStatusRepository;
private FamilyRelationshipRepository relationshipRepository;
private FamilyMemberRepository memberRepository;
private final UserService userService;
private final MaritalStatusRepository maritalStatusRepository;
private final FamilyRelationshipRepository relationshipRepository;
private final FamilyMemberRepository memberRepository;
@Autowired
public UsersController(UserService userService,MaritalStatusRepository maritalStatusRepository,FamilyRelationshipRepository relationshipRepository,FamilyMemberRepository memberRepository) {
this.userService = userService;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<div class="w-full px-4 lg:w-7/12">
<div class="hero-content">
<h1 class="mb-5 text-4xl font-bold !leading-[1.208] text-white dark:text-white sm:text-[42px] lg:text-[40px] xl:text-5xl">
The Greatest Journey Of Talent <br>
Thrive.
The Agile HR where Talent <br>
Governance Thrive.
</h1>
<p class="mb-8 max-w-[480px] text-white text-body-color dark:text-dark-6">
With Lambo-HR, business can cost-effectively outsource the management of payroll,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
<div class="image is-24x24">
<img
class="is-rounded"
src="https://avatars.dicebear.com/v2/initials/felicita-yundt.svg">
src="../assets/images/profile.png" alt="">
</div>
</td>
<td data-label="Name">Rebecca Bauch</td>
Expand All @@ -177,7 +177,9 @@
<tr>
<td class="is-image-cell">
<div class="image is-24x24">
<img class="is-rounded" src="https://avatars.dicebear.com/v2/initials/felicita-yundt.svg">
<img
class="is-rounded"
src="../assets/images/profile.png" alt="">
</div>
</td>
<td data-label="Name">Felicita Yundt</td>
Expand All @@ -201,8 +203,9 @@
<tr>
<td class="is-image-cell">
<div class="image is-24x24">
<img class="is-rounded"
src="https://avatars.dicebear.com/v2/initials/mr-larry-satterfield-v.svg">
<img
class="is-rounded"
src="../assets/images/profile.png" alt="">
</div>
</td>
<td data-label="Name">Mr. Larry Satterfield V</td>
Expand All @@ -226,7 +229,9 @@
<tr>
<td class="is-image-cell">
<div class="image is-24x24">
<img class="is-rounded" src="https://avatars.dicebear.com/v2/initials/mr-broderick-kub.svg">
<img
class="is-rounded"
src="../assets/images/profile.png" alt="">
</div>
</td>
<td data-label="Name">Mr. Broderick Kub</td>
Expand All @@ -250,7 +255,9 @@
<tr>
<td class="is-image-cell">
<div class="image is-24x24">
<img class="is-rounded" src="https://avatars.dicebear.com/v2/initials/mr-broderick-kub.svg">
<img
class="is-rounded"
src="../assets/images/profile.png" alt="">
</div>
</td>
<td data-label="Name">Mr. Johnson Didinya</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
autocomplete="off"
v-model="searchTerm"
@focusin="globalSearchFocus(true)"
type="text">
type="search">
</div>
</div>
<div id="globalSearchDropdown" class="dropdown-content w-full shadow-xl" >
Expand Down

0 comments on commit 09c72f8

Please sign in to comment.