diff --git a/app/frontend/app/globals.css b/app/frontend/app/globals.css index b7a4652..367b0d4 100644 --- a/app/frontend/app/globals.css +++ b/app/frontend/app/globals.css @@ -74,12 +74,19 @@ body { letter-spacing: 0.02em; } -.orb { - width: 18px; - height: 18px; - border-radius: 50%; - background: radial-gradient(circle at 30% 30%, #8fd6ff, #5c72ff); - box-shadow: 0 0 18px rgba(92, 114, 255, 0.6); +.logo-wrap { + display: inline-flex; + align-items: center; + justify-content: center; + width: 32px; + height: 32px; + border-radius: 10px; + background: rgba(255, 255, 255, 0.08); + border: 1px solid rgba(255, 255, 255, 0.08); +} + +.logo { + border-radius: 6px; } .hero { diff --git a/app/frontend/app/layout.tsx b/app/frontend/app/layout.tsx index 3c4ed06..99916a9 100644 --- a/app/frontend/app/layout.tsx +++ b/app/frontend/app/layout.tsx @@ -5,6 +5,10 @@ import { ReactNode } from "react"; export const metadata: Metadata = { title: "avaaz.ai", description: "Health check frontend for avaaz.ai", + icons: { + icon: [{ url: "/favicon.png", type: "image/png" }], + shortcut: ["/favicon.png"], + }, }; export default function RootLayout({ children }: { children: ReactNode }) { diff --git a/app/frontend/app/page.tsx b/app/frontend/app/page.tsx index 130e782..05da5e1 100644 --- a/app/frontend/app/page.tsx +++ b/app/frontend/app/page.tsx @@ -1,5 +1,6 @@ "use client"; +import Image from "next/image"; import { useEffect, useMemo, useState } from "react"; type HealthResponse = { @@ -83,7 +84,16 @@ export default function Home() {