소스 검색

Add footer to all the possible sidebar contents

Alessandro Pignotti 10 달 전
부모
커밋
06df68fdea
2개의 변경된 파일14개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 0
      assets/cheerpx.svg
  2. 14 2
      src/SideBar.svelte

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
assets/cheerpx.svg


+ 14 - 2
src/SideBar.svelte

@@ -27,7 +27,19 @@
 			/>
 		{/each}
 	</div>
-	<div class="shrink-0 w-52 h-full z-10 p-5 bg-neutral-600 text-gray-100" class:hidden={!activeInfo}>
-		{activeInfo}
+	<div class="flex flex-col shrink-0 w-52 h-full z-10 p-2 bg-neutral-600 text-gray-100" class:hidden={!activeInfo}>
+		<p>{activeInfo}</p>
+		<div class="mt-auto text-sm text-gray-300">
+			<div class="pt-1 pb-1">
+				<a href="https://cheerpx.io/" target="_blank">
+					<span>Powered by CheerpX</span>
+					<img src="assets/cheerpx.svg" alt="CheerpX Logo" class="w-6 h-6 inline-block">
+				</a>
+			</div>
+			<hr class="border-t border-solid border-gray-300">
+			<div class="text-center pt-1 pb-1">
+				<a href="https://leaningtech.com/" target="”_blank”">© 2024 Leaning Technologies</a>
+			</div>
+		</div>
 	</div>
 </div>

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.