Skip to content

Commit 0725fbe

Browse files
committed
feat(frontend): add logo and favicon
1 parent 4ab9dd4 commit 0725fbe

4 files changed

Lines changed: 42 additions & 4 deletions

File tree

8.11 KB
Loading

apps/frontend/src/app/globals.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ body {
9898
box-shadow: var(--ios-glow);
9999
}
100100

101+
.logo-mark img {
102+
width: 70%;
103+
height: 70%;
104+
object-fit: contain;
105+
filter: drop-shadow(0 6px 10px rgba(20, 30, 60, 0.25));
106+
}
107+
101108
.logo-title {
102109
font-size: 18px;
103110
font-weight: 700;
@@ -554,11 +561,31 @@ body {
554561
}
555562

556563
.footer-label {
564+
display: inline-flex;
565+
align-items: center;
566+
gap: 10px;
557567
font-weight: 700;
558568
color: rgba(11, 11, 22, 0.75);
559569
font-size: 16px;
560570
}
561571

572+
.footer-brand {
573+
width: 28px;
574+
height: 28px;
575+
display: grid;
576+
place-items: center;
577+
border-radius: 9px;
578+
background: linear-gradient(135deg, var(--ios-purple), var(--ios-teal));
579+
box-shadow: var(--ios-glow);
580+
}
581+
582+
.footer-brand img {
583+
width: 70%;
584+
height: 70%;
585+
object-fit: contain;
586+
filter: drop-shadow(0 4px 8px rgba(20, 30, 60, 0.2));
587+
}
588+
562589
.footer-subtitle {
563590
font-size: 13px;
564591
color: rgba(11, 11, 22, 0.5);

apps/frontend/src/app/layout.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ const geistMono = Geist_Mono({
1313
});
1414

1515
export const metadata: Metadata = {
16-
title: "Create Next App",
17-
description: "Generated by create next app",
16+
title: "verifyOS",
17+
description:
18+
"Scan iOS bundles for App Store review risks with agent-ready reports.",
19+
icons: {
20+
icon: "/logo/verifyOS_web_128x.png",
21+
shortcut: "/logo/verifyOS_web_128x.png",
22+
apple: "/logo/verifyOS_web_128x.png",
23+
},
1824
};
1925

2026
export default function RootLayout({

apps/frontend/src/app/page.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export default function Home() {
223223
<header className="nav">
224224
<div className="logo">
225225
<span className="logo-mark" aria-hidden="true">
226-
226+
<img src="/logo/verifyOS_web_128x.png" alt="" />
227227
</span>
228228
<div>
229229
<div className="logo-title">verifyOS</div>
@@ -466,7 +466,12 @@ export default function Home() {
466466

467467
<footer className="app-footer">
468468
<div>
469-
<div className="footer-label">verifyOS</div>
469+
<div className="footer-label">
470+
<span className="footer-brand" aria-hidden="true">
471+
<img src="/logo/verifyOS_web_128x.png" alt="" />
472+
</span>
473+
verifyOS
474+
</div>
470475
<div className="footer-subtitle">Resources &amp; downloads</div>
471476
</div>
472477
<nav className="footer-links" aria-label="verifyOS links">

0 commit comments

Comments
 (0)