Skip to content

Commit 9c03db7

Browse files
Adding updates
1 parent 1a6300d commit 9c03db7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Service-Landing-Page/js/hero.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ document.addEventListener("DOMContentLoaded", () => {
1313
<div>
1414
<h1 class="text-3xl">${hero.title}</h1>
1515
<p class="text-lg pt-3 pb-4">${hero.description}</p>
16-
<button class="bg-gray-300 hover:bg-gray-200 font-bold ease-in px-10 py-2 cursor-pointer rounded-md"type="submit">${hero.buttonText}</button>
16+
<button class="px-6 py-2 rounded-md text-lg font-bold border-1 border-gray-300 cursor-pointer shadow-md" type="submit">${hero.buttonText}</button>
1717
</div>
1818
<div class="shadow-md shadow-gray-400 p-4">
1919
<img class="w-auto h-100 rounded-sm" src="${hero.image}" alt=""/>

Service-Landing-Page/js/services.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ document.addEventListener("DOMContentLoaded", () => {
88
if (!section) return;
99

1010
section.innerHTML = `
11-
<h1 class="text-3xl font-bold mb-2">${title}</h1>
11+
<h1 class="text-2xl font-bold mb-2">${title}</h1>
1212
<p class="text-lg text-gray-600 mb-6">${description}</p>
1313
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
1414
${items

0 commit comments

Comments
 (0)