From 7d55aa2fbc0910f638fbddbc971a4c344044159d Mon Sep 17 00:00:00 2001
From: Meet Patel <113581962+meetpateltech@users.noreply.github.com>
Date: Sat, 1 Jun 2024 12:27:59 +0530
Subject: [PATCH] Add: wordmark version for OpenAI & Perplexity
In this PR, I have added OpenAI and Perplexity wordmark versions for both light and dark modes
---
src/data/svgs.ts | 24 +++++++++++++-------
static/library/openai_wordmark_dark.svg | 1 +
static/library/openai_wordmark_light.svg | 1 +
static/library/perplexity_wordmark_dark.svg | 1 +
static/library/perplexity_wordmark_light.svg | 1 +
5 files changed, 20 insertions(+), 8 deletions(-)
create mode 100644 static/library/openai_wordmark_dark.svg
create mode 100644 static/library/openai_wordmark_light.svg
create mode 100644 static/library/perplexity_wordmark_dark.svg
create mode 100644 static/library/perplexity_wordmark_light.svg
diff --git a/src/data/svgs.ts b/src/data/svgs.ts
index e00d84fc..901a339b 100644
--- a/src/data/svgs.ts
+++ b/src/data/svgs.ts
@@ -2,13 +2,13 @@ import type { iSVG } from '../types/svg';
export const svgs: iSVG[] = [
{
- title: 'Cisco',
- category: 'Software',
- route: {
- light: '/library/cisco_light.svg',
- dark: '/library/cisco_dark.svg'
- },
- url: 'https://www.cisco.com/'
+ title: 'Cisco',
+ category: 'Software',
+ route: {
+ light: '/library/cisco_light.svg',
+ dark: '/library/cisco_dark.svg'
+ },
+ url: 'https://www.cisco.com/'
},
{
title: 'Animate',
@@ -1372,6 +1372,10 @@ export const svgs: iSVG[] = [
light: '/library/openai.svg',
dark: '/library/openai_dark.svg'
},
+ wordmark: {
+ light: '/library/openai_wordmark_light.svg',
+ dark: '/library/openai_wordmark_dark.svg'
+ },
url: 'https://openai.com/'
},
{
@@ -2210,6 +2214,10 @@ export const svgs: iSVG[] = [
title: 'Perplexity AI',
category: 'AI',
route: '/library/perplexity.svg',
+ wordmark: {
+ light: '/library/perplexity_wordmark_light.svg',
+ dark: '/library/perplexity_wordmark_dark.svg'
+ },
url: 'https://perplexity.ai/'
},
{
@@ -2753,5 +2761,5 @@ export const svgs: iSVG[] = [
category: 'Library',
route: '/library/webcomponents.svg',
url: 'https://www.webcomponents.org/'
- },
+ }
];
diff --git a/static/library/openai_wordmark_dark.svg b/static/library/openai_wordmark_dark.svg
new file mode 100644
index 00000000..5b90cf52
--- /dev/null
+++ b/static/library/openai_wordmark_dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/library/openai_wordmark_light.svg b/static/library/openai_wordmark_light.svg
new file mode 100644
index 00000000..5680459f
--- /dev/null
+++ b/static/library/openai_wordmark_light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/library/perplexity_wordmark_dark.svg b/static/library/perplexity_wordmark_dark.svg
new file mode 100644
index 00000000..4e0ddc22
--- /dev/null
+++ b/static/library/perplexity_wordmark_dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/library/perplexity_wordmark_light.svg b/static/library/perplexity_wordmark_light.svg
new file mode 100644
index 00000000..d03af132
--- /dev/null
+++ b/static/library/perplexity_wordmark_light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file