Skip to content

Commit

Permalink
move public assets to public
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanharikr committed Dec 12, 2024
1 parent ba9d8ce commit 5d57fd0
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ <h4 class="font-medium">Error</h4>
</p>

<div class="flex items-center justify-around my-4">
<img src="/assets/1.png" class="h-14" />
<img src="/assets/2.png" class="h-14" />
<img src="/assets/3.png" class="h-14" />
<img src="/assets/4.png" class="h-14" />
<img src="/1.png" class="h-14" />
<img src="/2.png" class="h-14" />
<img src="/3.png" class="h-14" />
<img src="/4.png" class="h-14" />
</div>

<div id="requires-container" class="text-left rounded-md py-2 px-4 mb-6 w-3/4 mx-auto">
Expand Down Expand Up @@ -90,7 +90,7 @@ <h4 class="font-medium">Error</h4>
</header>
<main id="profile-page-content" style="display: none;" class="container px-6 sm:max-w-5xl mx-auto pt-20 pb-20">
<div class="relative flex flex-col items-start sm:items-center">
<img src="/assets/bg.jpg" class="h-36 sm:h-64 w-full rounded-md object-cover" />
<img src="/bg.jpg" class="h-36 sm:h-64 w-full rounded-md object-cover" />
<div id="picture"
class="shadow-medium border-4 border-white h-20 w-20 sm:h-36 sm:w-36 rounded-md -mt-12 sm:-mt-16 ml-4 sm:ml-0 bg-gray-200 bg-no-repeat bg-cover bg-center">
</div>
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ function showLoginPage() {
loginPage.style.position = 'relative';
profilePage.style.display = 'none';
profilePageContent.style.display = 'none';
document.body.style.backgroundImage = 'url(/assets/bg.jpg)';
document.body.style.backgroundImage = 'url(/bg.jpg)';
}

const plausibleIgnore = localStorage.getItem('plausible_ignore') == 'true'
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 5d57fd0

Please sign in to comment.