Skip to content

Commit b7ab546

Browse files
added logo
1 parent c43d39e commit b7ab546

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.netlify/deploy/v1/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"images":{"remote_images":["https?://cdn\\.pixabay\\.com/.*"]}}

src/assets/images/Logo_Blue.png

20 KB
Loading

src/components/Logo.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
---
22
import { SITE } from 'astrowind:config';
3+
import { Image } from 'astro:assets';
4+
import ACFOLogo from '../assets/images/Logo_Blue.png'
5+
36
---
47

58
<span
69
class="self-center ml-2 rtl:ml-0 rtl:mr-2 text-2xl md:text-xl font-bold text-gray-900 whitespace-nowrap dark:text-white"
710
>
8-
{SITE?.name}
11+
<Image
12+
src={ACFOLogo}
13+
width = {ACFOLogo.width / 8}
14+
alt="Anderson CFO logo"
15+
/>
16+
917
</span>

src/layouts/PageLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import Layout from '~/layouts/Layout.astro';
33
import Header from '~/components/widgets/Header.astro';
44
import Footer from '~/components/widgets/Footer.astro';
5-
import Announcement from '~/components/widgets/Announcement.astro';
5+
// import Announcement from '~/components/widgets/Announcement.astro';
66
77
import { headerData, footerData } from '~/navigation';
88

0 commit comments

Comments
 (0)