Skip to content

Commit eedf346

Browse files
committed
Use local logos instead of external URLs
1 parent f52c9ee commit eedf346

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

public/logo-dark.svg

Lines changed: 15 additions & 0 deletions
Loading

public/logo.svg

Lines changed: 15 additions & 0 deletions
Loading

src/layouts/Layout.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ const {
3232
<meta property="og:type" content="website" />
3333
<meta property="og:url" content="https://fluentcms.com" />
3434
<meta property="og:site_name" content="FluentCMS" />
35-
<meta property="og:image" content="https://fluentcms.com/og-image.png" />
35+
<meta property="og:image" content="https://fluentcms.com/logo.svg" />
3636

3737
<!-- Twitter -->
3838
<meta name="twitter:card" content="summary_large_image" />
3939
<meta name="twitter:title" content={title} />
4040
<meta name="twitter:description" content={description} />
41-
<meta name="twitter:image" content="https://fluentcms.com/og-image.png" />
41+
<meta name="twitter:image" content="https://fluentcms.com/logo.svg" />
4242
<meta name="twitter:site" content="@fluentcms" />
4343

4444
<!-- Canonical -->
@@ -66,7 +66,7 @@ const {
6666
"@type": "Organization",
6767
"name": "FluentCMS",
6868
"url": "https://fluentcms.com/",
69-
"logo": "https://fluentcms.com/files/images/logo.svg",
69+
"logo": "https://fluentcms.com/logo.svg",
7070
"description": "AI-powered, open-source headless CMS built with ASP.NET Core and Blazor",
7171
"sameAs": [
7272
"https://github.com/fluentcms/FluentCMS",

src/pages/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import Layout from '../layouts/Layout.astro';
1212
<div class="max-w-screen-xl mx-auto px-3 sm:px-4">
1313
<div class="flex flex-wrap items-center justify-between h-14 sm:h-16">
1414
<a href="/" class="flex items-center">
15-
<img src="https://fluentcms.com/files/images/logo.svg" class="h-7 sm:h-9 mr-2 dark:hidden" alt="FluentCMS Logo">
16-
<img src="https://fluentcms.com/files/images/logo-dark.svg" class="h-7 sm:h-9 mr-2 hidden dark:block" alt="FluentCMS Logo">
15+
<img src="/logo.svg" class="h-7 sm:h-9 mr-2 dark:hidden" alt="FluentCMS Logo">
16+
<img src="/logo-dark.svg" class="h-7 sm:h-9 mr-2 hidden dark:block" alt="FluentCMS Logo">
1717
</a>
1818
<div class="flex items-center md:order-2 gap-2">
1919
<a href="https://github.com/fluentcms/FluentCMS" target="_blank" rel="noopener noreferrer" class="text-white bg-gradient-to-r from-blue-600 to-blue-700 hover:from-blue-700 hover:to-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-xs sm:text-sm px-3 sm:px-4 py-1.5 sm:py-2 text-center inline-flex items-center gap-1 sm:gap-2 dark:focus:ring-blue-800">
@@ -336,7 +336,7 @@ import Layout from '../layouts/Layout.astro';
336336
<div class="max-w-screen-xl mx-auto px-3 sm:px-4 py-8 sm:py-10">
337337
<div class="flex flex-col items-center">
338338
<a href="/" class="flex items-center mb-4 sm:mb-6">
339-
<img src="https://fluentcms.com/files/images/logo.svg" class="h-8 sm:h-10 mr-2 sm:mr-3 filter brightness-0 invert" alt="FluentCMS Logo">
339+
<img src="/logo.svg" class="h-8 sm:h-10 mr-2 sm:mr-3 filter brightness-0 invert" alt="FluentCMS Logo">
340340
<span class="self-center text-xl sm:text-2xl font-semibold whitespace-nowrap text-white">FluentCMS</span>
341341
</a>
342342
<p class="mb-4 sm:mb-6 text-gray-400 text-center max-w-md text-sm sm:text-base">Open-source AI-powered Headless CMS built with ASP.NET Core and Blazor. MIT Licensed.</p>

0 commit comments

Comments
 (0)