class="bg-gray-700 py-2 px-4 rounded-t-md flex items-center space-x-2 border-b border-gray-800"> <div class="w-3 h-3 rounded-full bg-red-500"></div> <div class="w-3 h-3 rounded-full bg-yellow-500"></div> <div class="w-3 h-3 rounded-full bg-green-500"></div> <span class="ml-2 text-gray-100 text-sm font-medium">terminal</span> </div> <div class="p-4 text-green-400 font-mono text-sm"> ユーザー名@ホスト名 ~ % <span class="text-white">git clone https://github.com/example/repo.git</span> <br> Cloning into 'repo'... <br> remote: Enumerating objects: 100, done. <br> remote: Counting objects: 100% (100/100), done. <br> remote: Compressing objects: 100% (50/50), done. <br> remote: Total 100 (delta 30), reused 80 (delta 20), pack-reused 0 <br> Receiving objects: 100% (100/100), 10.24 KiB | 2.05 MiB/s, done. <br> Resolving deltas: 100% (30/30), done. </div> </div> terminal ユーザー名@ホスト名 ~ % git clone https://github.com/example/repo.git Cloning into 'repo'... remote: Enumerating objects: 100, done. remote: Counting objects: 100% (100/100), done. remote: Compressing objects: 100% (50/50), done. remote: Total 100 (delta 30), reused 80 (delta 20), pack-reused 0 Receiving objects: 100% (100/100), 10.24 KiB | 2.05 MiB/s, done. Resolving deltas: 100% (30/30), done. 11