Skip to content

Commit 71ecd91

Browse files
committed
Tweak final issues for v1 release
1 parent 03c6e91 commit 71ecd91

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Technophile
3+
Copyright (c) 2025 Technophile
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# QuickSnip
22

3-
An open-source project that categorizes handy code snippets across various programming languages. Built with love and powered by an awesome community. 🚀
3+
QuickSnip is an open-source tool designed for developers who want to organize, search, and share code snippets across various programming languages. It provides a centralized platform for managing handy snippets. Built with love and powered by an awesome community. 🚀
44

55
<div>
66
<a href="https://youtu.be/BhRi7fJzPgk?si=z1sVXU7uRS0bkSEt" target="_blank">

VISION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## What is QuickSnip?
44

5-
QuickSnip is an open-source tool designed for developers who want to organize, search, and share code snippets. It aims to streamline the coding process by providing a centralized platform for snippet management.
5+
QuickSnip is an open-source tool designed for developers who want to organize, search, and share code snippets across various programming languages. It provides a centralized platform for managing handy snippets. Built with love and powered by an awesome community.
66

77
## Core Principles
88

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!-- SEO Meta Tags -->
88
<meta
99
name="description"
10-
content="QuickSnip - An open-source project that categorizes handy code snippets across various programming languages. Powered by an awesome community."
10+
content="QuickSnip is an open-source tool designed for developers who want to organize, search, and share code snippets across various programming languages. It provides a centralized platform for managing handy snippets. Built with love and powered by an awesome community."
1111
/>
1212
<meta
1313
name="keywords"
@@ -59,6 +59,7 @@
5959
sizes="16x16"
6060
href="/favicon/favicon-16x16.png"
6161
/>
62+
<link rel="icon" href="/favicon/favicon.ico" />
6263
<link rel="manifest" href="/site.webmanifest" />
6364

6465
<!-- Canonical URL (Avoid duplicate content issues) -->

src/components/CodePreview.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const CodePreview = ({ extension = "markdown", languageName, code }: Props) => {
5151
language={extension}
5252
style={theme === "dark" ? oneDark : oneLight}
5353
wrapLines={true}
54-
customStyle={{ margin: "0", maxHeight: "32rem" }}
54+
customStyle={{ margin: "0", maxHeight: "22rem" }}
5555
>
5656
{code}
5757
</SyntaxHighlighter>

0 commit comments

Comments
 (0)