Add renewable energy favicon with sun and leaf
Some checks are pending
CI / Engine — lint / typecheck / test (push) Waiting to run
CI / API — lint / typecheck / test (push) Waiting to run
CI / Web — typecheck / lint / build (push) Waiting to run

This commit is contained in:
Manohar Gupta 2026-05-15 08:50:22 +05:30
parent a85af21fdb
commit cdcefa389d
2 changed files with 18 additions and 0 deletions

View file

@ -17,6 +17,7 @@ const geistMono = Geist_Mono({
export const metadata: Metadata = { export const metadata: Metadata = {
title: "REmodel — RE Project Finance", title: "REmodel — RE Project Finance",
description: "Hybrid Solar + Wind + BESS project finance modeling", description: "Hybrid Solar + Wind + BESS project finance modeling",
icons: [{ rel: "icon", url: "/favicon.svg" }],
}; };
export default function RootLayout({ export default function RootLayout({

View file

@ -0,0 +1,17 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<!-- Sun circle -->
<circle cx="16" cy="16" r="10" fill="#FDB813"/>
<!-- Sun rays -->
<g stroke="#FDB813" stroke-width="2" stroke-linecap="round">
<line x1="16" y1="2" x2="16" y2="5"/>
<line x1="16" y1="27" x2="16" y2="30"/>
<line x1="2" y1="16" x2="5" y2="16"/>
<line x1="27" y1="16" x2="30" y2="16"/>
<line x1="5.5" y1="5.5" x2="7.5" y2="7.5"/>
<line x1="24.5" y1="24.5" x2="26.5" y2="26.5"/>
<line x1="5.5" y1="26.5" x2="7.5" y2="24.5"/>
<line x1="24.5" y1="7.5" x2="26.5" y2="5.5"/>
</g>
<!-- Leaf in center -->
<path d="M16 12 Q20 16 16 22 Q12 16 16 12" fill="#22C55E"/>
</svg>

After

Width:  |  Height:  |  Size: 689 B