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
5 changes: 4 additions & 1 deletion backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,7 @@ dmypy.json

# Media and static files
media/
staticfiles/
staticfiles/

# Ruff
.ruff_cache
15 changes: 13 additions & 2 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,18 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/sec-logo.svg" />
<link
rel="icon"
type="image/svg+xml"
href="/sec-logo-light.svg"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
type="image/svg+xml"
href="/sec-logo-dark.svg"
media="(prefers-color-scheme: dark)"
/>
<title>BHOS SEC | Showcase</title>
<meta
name="description"
Expand All @@ -16,7 +27,7 @@
<meta name="author" content="BHOS Software Engineering Collective" />
<meta name="theme-color" content="#000000" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-TileImage" content="/sec-logo.svg" />
<meta name="msapplication-TileImage" content="/sec-logo-dark.svg" />
</head>
<body>
<div id="root"></div>
Expand Down
12 changes: 12 additions & 0 deletions frontend/public/sec-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions frontend/public/sec-logo-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 0 additions & 26 deletions frontend/public/sec-logo.svg

This file was deleted.

Loading
Loading