diff --git a/src/components/brand/PodkrepiLogo.tsx b/src/components/brand/PodkrepiLogo.tsx
index 4f85516bc..697358cc1 100644
--- a/src/components/brand/PodkrepiLogo.tsx
+++ b/src/components/brand/PodkrepiLogo.tsx
@@ -1,8 +1,6 @@
import React from 'react'
import { styled } from '@mui/material/styles'
-
-import SVGLogoBetaBG from './podkrepi-logo-beta-bg'
-import SVGLogoBetaEN from './podkrepi-logo-beta-en'
+import theme from 'common/theme'
const PREFIX = 'PodkrepiLogo'
@@ -40,7 +38,113 @@ export default function PodkrepiLogo({
const [width, height] = variant === 'fixed' ? sizes[size] : ['100%', '100%']
return (
- {locale === 'bg' ? : }
+
+
+
+
+
+ {locale === 'bg' ? (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ) : (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )}
+
)
}
diff --git a/src/components/brand/podkrepi-logo-beta-bg.tsx b/src/components/brand/podkrepi-logo-beta-bg.tsx
deleted file mode 100644
index ce408ef21..000000000
--- a/src/components/brand/podkrepi-logo-beta-bg.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import * as React from 'react'
-import { SVGProps } from 'react'
-
-//The logo is imported from svg file using this tool: https://www.svgviewer.dev/svg-to-react-jsx
-const SVGLogoBetaBG = (props: SVGProps) => (
-
-)
-
-export default SVGLogoBetaBG
diff --git a/src/components/brand/podkrepi-logo-beta-en.tsx b/src/components/brand/podkrepi-logo-beta-en.tsx
deleted file mode 100644
index 576f87a6e..000000000
--- a/src/components/brand/podkrepi-logo-beta-en.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import * as React from 'react'
-import { SVGProps } from 'react'
-
-//The logo is imported from svg file using this tool: https://www.svgviewer.dev/svg-to-react-jsx
-const SVGLogoBetaEN = (props: SVGProps) => (
-
-)
-
-export default SVGLogoBetaEN