diff --git a/src/components/Brand.astro b/src/components/Brand.astro new file mode 100644 index 0000000..20b0d09 --- /dev/null +++ b/src/components/Brand.astro @@ -0,0 +1,34 @@ +--- +import { Image } from 'astro:assets'; +import bpLogo from '../graphics/bp.webp'; +import calHacksLogo from '../graphics/calhacks.webp'; +--- + +
+ + Blueprint + +

&

+ + CalHacks + +
+ + diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 15cc105..5ba8027 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,12 +1,12 @@ --- import { Image } from 'astro:assets'; -import brandIcon from '../graphics/brand.webp'; +import Brand from './Brand.astro'; import bearIcon from '../graphics/bear.svg'; --- diff --git a/src/graphics/bp.webp b/src/graphics/bp.webp new file mode 100644 index 0000000..78af321 Binary files /dev/null and b/src/graphics/bp.webp differ diff --git a/src/graphics/brand.webp b/src/graphics/brand.webp deleted file mode 100644 index dbaca37..0000000 Binary files a/src/graphics/brand.webp and /dev/null differ diff --git a/src/graphics/calhacks.webp b/src/graphics/calhacks.webp new file mode 100644 index 0000000..c7b0ba7 Binary files /dev/null and b/src/graphics/calhacks.webp differ