Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ __pycache__/
# Distribution / packaging
.Python
build/
# electron-builder resources (app icons) are source, not a Python build artifact — keep them tracked
!electron/build/
!electron/build/**
develop-eggs/
dist/
downloads/
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# onot
<p align="center">
<img src="docs/images/logo.svg" alt="onot — OSS Notice Generator" width="300" />
</p>

[![CI](https://github.com/sktelecom/onot/actions/workflows/ci.yml/badge.svg)](https://github.com/sktelecom/onot/actions/workflows/ci.yml)
[![Security](https://github.com/sktelecom/onot/actions/workflows/security.yml/badge.svg)](https://github.com/sktelecom/onot/actions/workflows/security.yml)
Expand Down
16 changes: 16 additions & 0 deletions docs/images/logo-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions docs/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions electron/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added electron/build/icon.icns
Binary file not shown.
Binary file added electron/build/icon.ico
Binary file not shown.
Binary file added electron/build/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>onot — OSS Notice Generator</title>
</head>
<body>
Expand Down
16 changes: 16 additions & 0 deletions frontend/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions frontend/public/logo-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions frontend/public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,12 @@ export default function App() {

return (
<div className="mx-auto max-w-6xl p-6">
<header className="mb-6">
<h1 className="text-2xl font-bold">{t(uiLang, "title")}</h1>
<p className="text-sm text-zinc-400">{t(uiLang, "subtitle")}</p>
<header className="mb-6 flex items-center gap-3">
<img src="/logo-mark.svg" alt="onot" width={44} height={44} className="shrink-0" />
<div>
<h1 className="text-2xl font-bold">{t(uiLang, "title")}</h1>
<p className="text-sm text-zinc-400">{t(uiLang, "subtitle")}</p>
</div>
</header>

<main>
Expand Down
Loading