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..ca7cb99 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,7 +3,18 @@ - + + 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 ( - - - - - - - + + + + + + ); }