-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (95 loc) · 3.25 KB
/
Copy pathindex.html
File metadata and controls
97 lines (95 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Syncd Logo Gallery</title>
</head>
<body>
<main>
<h1>The Logo Gallery</h1>
<section>
<h2>V1 Usage</h2>
<p>
The V1 logo gallery offers a collection of static logos in both SVG
and PNG formats. These pre-rendered image files are ready for direct
embedding or linking.
</p>
<p>
To use a V1 logo from the gallery, use one of the following URL
formats:
</p>
<h3>For SVG:</h3>
<pre><code>https://syncdpublic.dev/logos/logo.svg</code></pre>
<h3>For PNG:</h3>
<pre><code>https://syncdpublic.dev/logos/logo.png</code></pre>
<p>
These URLs will return only the logo file, without any additional
markup or wrappers.
</p>
</section>
<section>
<h2>V2 Usage</h2>
<p>
The V2 folder (/logos-v2) contains a different set of logos with a new
naming convention. V2 logos are available
<strong>only in SVG format</strong>.
</p>
<p>To use a V2 logo from the gallery, use the following URL format:</p>
<pre><code>https://syncdpublic.dev/logos-v2/logo.svg</code></pre>
<h3>For logos with dark and light themes:</h3>
<pre><code>https://syncdpublic.dev/logos-v2/logo.dark.svg
https://syncdpublic.dev/logos-v2/logo.light.svg</code></pre>
<p>
Note: Some V2 logos are only available in one theme. In that case,
access them using the standard format:
</p>
<pre><code>https://syncdpublic.dev/logos-v2/logo.svg</code></pre>
</section>
<section>
<h2>Available Logos</h2>
<p>
To see all available logos and their variations, please visit our
GitHub repository:
</p>
<pre><code>https://github.com/PaddaSecurity/syncd-logo-gallery</code></pre>
<p>In the repository, you'll find:</p>
<ul>
<li>A complete list of all V1 and V2 logos</li>
<li>Preview images of each logo</li>
<li>Information about available formats and themes for each logo</li>
</ul>
<p>
You can also contribute to the project by submitting new logos or
suggesting improvements through GitHub issues or pull requests.
</p>
</section>
<section>
<h2>Logo Takedown Requests</h2>
<p>
If you believe that a logo in our gallery infringes on your
intellectual property rights and you want it removed, please email
your takedown request to:
</p>
<pre><code>tcistull@syncd.dev</code></pre>
<p>
We will review your request and take appropriate action as soon as
possible.
</p>
</section>
</main>
<footer>
<p>Made with ❤️ by <a href="https://syncd.dev">syncd.dev</a></p>
<p>
Contribute to this project on
<a
href="https://github.com/PaddaSecurity/syncd-logo-gallery"
target="_blank"
rel="noopener noreferrer"
>
GitHub
</a>
</p>
</footer>
</body>
</html>