diff --git a/home/_includes/footer.html b/home/_includes/footer.html index c39e26fd..32af3af0 100644 --- a/home/_includes/footer.html +++ b/home/_includes/footer.html @@ -2,9 +2,7 @@ <div class="container px-5 py-24 mx-auto flex md:items-center lg:items-start md:flex-row md:flex-nowrap flex-wrap flex-col"> <div class="w-64 flex-shrink-0 md:mx-0 mx-auto text-center md:text-left"> <a class="flex title-font font-medium items-center md:justify-start justify-center cm-lgt-txt"> - <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-10 h-10 text-white p-2 bg-secondary rounded-full" viewBox="0 0 24 24"> - <path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path> - </svg> + <img src="/assets/logo.png" class="h-8"> <span class="ml-3 text-xl">{{ site.title }}</span> </a> <p class="mt-2 text-sm text-gray-500">{{ site.tagline }}</p> diff --git a/home/_includes/header.html b/home/_includes/header.html index 0755249e..4752460c 100644 --- a/home/_includes/header.html +++ b/home/_includes/header.html @@ -1,9 +1,7 @@ <header class="cm-text-body body-font sticky top-0 z-50 bg-gradient-to-r from-gray-100 to-purple-400"> <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <a class="flex title-font font-medium items-center cm-lgt-txt mb-4 md:mb-0"> - <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-10 h-10 text-white p-2 bg-primary rounded-full" viewBox="0 0 24 24"> - <path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path> - </svg> + <img src="/assets/logo.png" class="h-8"> <span class="ml-3 text-xl">{{ site.title }}</span> </a> diff --git a/home/assets/logo.png b/home/assets/logo.png new file mode 100644 index 00000000..09791554 Binary files /dev/null and b/home/assets/logo.png differ