Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"permissions": {
"allow": [
"Bash(bun install:*)",
"Bash(bun run:*)"
],
"deny": []
}
}
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest # or "latest", "canary", <sha>
bun-version: latest

- name: Install Dependencies
run: bun install
run: bun install --frozen-lockfile

- name: Build Project
run: bun run build
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions public/COPYRIGHT.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Exodar © (Rometheme). 2018. All Rights Reserved
45 changes: 36 additions & 9 deletions src/components/PromptExecutionLogo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,42 @@
<div class="logo-container">
<img src="/PromptExecution-LogoV2-full-transparent.webp" class="logo-head" alt="Cybernetic Head"/>
<div class="text-container">
<img src="/title-promptexecution.svg" class="logo-title" alt="Prompt Execution"/>
<img src="/subtitle-cognitive-process-automation.svg" class="logo-subtitle" alt="Cognitive Robotic Process Automation"/>
<div class="logo-title">PROMPT EXECUTION</div>
<div class="logo-subtitle">COGNITIVE ROBOTIC PROCESS AUTOMATION</div>
</div>
</div>
</div>
</template>

<style scoped>

/* Font imports for logo SVGs */
/* Font imports for logo text */
@import url('https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron');

@font-face {
font-family: 'Patron-PersonalUse-Regular';
src: url('https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron') format('truetype');
}

@font-face {
font-family: 'Patron - Personal Use';
src: url('https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron') format('truetype');
}

@font-face {
font-family: 'ExodarOutline';
src: url('/fonts/Exodar-Outline.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Exodar-Outline';
src: url('/fonts/Exodar-Outline.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

.logo-wrapper {
display: flex;
justify-content: center;
Expand All @@ -53,15 +70,25 @@
}

.logo-title {
width: 696px;
height: 60px;
padding: 0 4px;
border-radius: 5px;
font-family: 'Patron-PersonalUse-Regular', 'Patron - Personal Use', 'Patron', serif;
font-size: 67px;
font-weight: normal;
color: black;
white-space: nowrap;
line-height: 1.0;
letter-spacing: 0.02em;
}

.logo-subtitle {
width: 696px;
height: 30px;
font-family: 'ExodarOutline', 'Exodar-Outline', monospace;
font-size: 41px;
font-weight: normal;
color: transparent;
-webkit-text-stroke: 1.31px rgb(117, 126, 127);
text-stroke: 1.31px rgb(117, 126, 127);
white-space: nowrap;
line-height: 1.0;
letter-spacing: 0.02em;
}

@keyframes rainbow-pulse {
Expand Down