Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the description text for svg-tool to be more concise #74

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion src/app/(tools)/svg-to-png/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SVGTool } from "./svg-tool";

export const metadata = {
title: "SVG to PNG converter - QuickPic",
description: "Convert SVGs to PNGs. Also makes them bigger.",
description: "Make SVGs into PNGs for free. (You can scale size too.)",
};

export default function SVGToolPage() {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(tools)/svg-to-png/svg-tool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function SVGToolCore(props: { fileUploaderProps: FileUploaderResult }) {
if (!imageMetadata)
return (
<UploadBox
title="Make SVGs into PNGs. Also makes them bigger. (100% free btw.)"
title="Make SVGs into PNGs for free. (You can scale size too.)"
description="Upload SVG"
accept=".svg"
onChange={handleFileUploadEvent}
Expand Down