From 60dfde4c1e96696ea67e37fe7a6b6fd17a24f474 Mon Sep 17 00:00:00 2001 From: Vusal Huseynov Date: Thu, 12 Mar 2026 22:12:13 +0400 Subject: [PATCH 1/2] feat: Add distinct light and dark mode SVG logos, update favicon links for color scheme preference, and ignore ruff cache. --- backend/.gitignore | 5 ++++- frontend/index.html | 5 +++-- frontend/public/sec-logo-dark.svg | 12 ++++++++++++ frontend/public/sec-logo-light.svg | 12 ++++++++++++ frontend/public/sec-logo.svg | 26 -------------------------- frontend/src/components/Logo.tsx | 30 +++++++++++++++++++----------- 6 files changed, 50 insertions(+), 40 deletions(-) create mode 100644 frontend/public/sec-logo-dark.svg create mode 100644 frontend/public/sec-logo-light.svg delete mode 100644 frontend/public/sec-logo.svg diff --git a/backend/.gitignore b/backend/.gitignore index 2d1318e..180d45e 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -132,4 +132,7 @@ dmypy.json # Media and static files media/ -staticfiles/ \ No newline at end of file +staticfiles/ + +# Ruff +.ruff_cache diff --git a/frontend/index.html b/frontend/index.html index bf2da73..2babb92 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,7 +3,8 @@ - + + BHOS SEC | Showcase - +
diff --git a/frontend/public/sec-logo-dark.svg b/frontend/public/sec-logo-dark.svg new file mode 100644 index 0000000..1752c66 --- /dev/null +++ b/frontend/public/sec-logo-dark.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/frontend/public/sec-logo-light.svg b/frontend/public/sec-logo-light.svg new file mode 100644 index 0000000..ad25b28 --- /dev/null +++ b/frontend/public/sec-logo-light.svg @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/frontend/public/sec-logo.svg b/frontend/public/sec-logo.svg deleted file mode 100644 index efea650..0000000 --- a/frontend/public/sec-logo.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/frontend/src/components/Logo.tsx b/frontend/src/components/Logo.tsx index ec30187..533011a 100644 --- a/frontend/src/components/Logo.tsx +++ b/frontend/src/components/Logo.tsx @@ -2,22 +2,30 @@ export function Logo({ className }: { className?: string }) { return ( - - - - - - - + + + + + + ); } From 72d47e0dd4d45b59973ef92e31b54529fa115164 Mon Sep 17 00:00:00 2001 From: Vusal Huseynov Date: Thu, 12 Mar 2026 22:13:36 +0400 Subject: [PATCH 2/2] refactor: reformat favicon link tags for readability --- frontend/index.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 2babb92..ca7cb99 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,8 +3,18 @@ - - + + BHOS SEC | Showcase