diff --git a/components/RegionBranding.tsx b/components/RegionBranding.tsx
index b56e81c..caac794 100644
--- a/components/RegionBranding.tsx
+++ b/components/RegionBranding.tsx
@@ -99,22 +99,39 @@ const data = [
),
imgUrl: "/AASLogo.png",
},
- {
- code: "US-CO",
- html: (
-
- ),
- imgUrl: "/dfo-logo.jpg",
- },
];
export default function RegionBranding({ regionCode, className }: Props) {
+ if (regionCode === "US-CO") {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+ }
const branding = data.find((d) => d.code === regionCode || regionCode.startsWith(d.code));
if (!branding) return null;
return (
diff --git a/public/cfo.png b/public/cfo.png
new file mode 100644
index 0000000..cd30b92
Binary files /dev/null and b/public/cfo.png differ