Skip to content

Commit 023ff85

Browse files
author
b
committed
vanta background
1 parent 44ba2a2 commit 023ff85

File tree

7 files changed

+219
-2
lines changed

7 files changed

+219
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ https://github.com/Iconscout/vue-unicons
1212

1313
## EventBus
1414
https://github.com/developit/mitt#usage
15+
16+
15.5 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Loading
11.1 KB
Binary file not shown.

public/title-promptexecution.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/PromptExecutionLogo.vue

Lines changed: 59 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,66 @@
55
</script>
66

77
<template>
8-
<img src="/PromptExecution2b.svg" class="logo" alt="Logo"/>
8+
<div class="logo-wrapper">
9+
<div class="logo-container">
10+
<img src="/PromptExecution-LogoV2-full-transparent.webp" class="logo-head" alt="Cybernetic Head"/>
11+
<div class="text-container">
12+
<img src="/title-promptexecution.svg" class="logo-title" alt="Prompt Execution"/>
13+
<img src="/subtitle-cognitive-process-automation.svg" class="logo-subtitle" alt="Cognitive Robotic Process Automation"/>
14+
</div>
15+
</div>
16+
</div>
917
</template>
1018

1119
<style scoped>
1220
13-
</style>
21+
.logo-wrapper {
22+
display: flex;
23+
justify-content: center;
24+
align-items: center;
25+
}
26+
27+
.logo-container {
28+
display: flex;
29+
align-items: center;
30+
height: 122px;
31+
}
32+
33+
.logo-head {
34+
width: 100px;
35+
height: 100px;
36+
margin-right: 10px;
37+
}
38+
39+
.text-container {
40+
display: flex;
41+
flex-direction: column;
42+
gap: 10px;
43+
}
44+
45+
.logo-title {
46+
width: 696px;
47+
height: 60px;
48+
padding: 0 4px;
49+
border-radius: 5px;
50+
}
51+
52+
.logo-subtitle {
53+
width: 696px;
54+
height: 30px;
55+
}
56+
57+
@keyframes rainbow-pulse {
58+
0% { filter: drop-shadow(0 0 2px hsl(0, 100%, 50%)); }
59+
16% { filter: drop-shadow(0 0 3px hsl(60, 100%, 50%)); }
60+
33% { filter: drop-shadow(0 0 2px hsl(120, 100%, 50%)); }
61+
50% { filter: drop-shadow(0 0 5px hsl(180, 100%, 50%)); }
62+
66% { filter: drop-shadow(0 0 2px hsl(0, 0%, 100%)); }
63+
83% { filter: drop-shadow(0 0 7px hsl(300, 100%, 50%)); }
64+
100% { filter: drop-shadow(0 0 2px hsl(360, 100%, 50%)); }
65+
}
66+
67+
.logo-title {
68+
animation: rainbow-pulse 10s infinite linear;
69+
}
70+
</style>

src/data.json

Lines changed: 156 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)