diff --git a/crop.py b/crop.py new file mode 100644 index 0000000..8bac42e --- /dev/null +++ b/crop.py @@ -0,0 +1,5 @@ +from PIL import Image +img = Image.open('proto/public/mozdit_logo.png') +# Crop box is (left, upper, right, lower) +cropped = img.crop((380, 140, 880, 300)) +cropped.save('proto/public/mozdit_logo_text.png') diff --git a/proto/public/mozdit_logo_text.png b/proto/public/mozdit_logo_text.png new file mode 100644 index 0000000..b543982 Binary files /dev/null and b/proto/public/mozdit_logo_text.png differ diff --git a/proto/src/components/Header.tsx b/proto/src/components/Header.tsx index 2d74b54..5aa3dfb 100755 --- a/proto/src/components/Header.tsx +++ b/proto/src/components/Header.tsx @@ -50,7 +50,7 @@ export default function Header() { className="group flex items-center gap-2 transition-all duration-200" > {siteConfig.general.name}