Skip to content

Commit bc80af5

Browse files
bclaude
andcommitted
Install licensed PATRON font files locally
- Add PATRON.ttf, PATRON.woff, PATRON.woff2 to public/fonts/ - Add PATRON fonts to src/assets/fonts/ for @import usage - Update PromptExecutionLogo.vue to use local fonts instead of onlinewebfonts.com - Removes font loading errors from browser console Font files from: PATRON Multimedia License.zip Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 996bbd9 commit bc80af5

File tree

7 files changed

+11
-5
lines changed

7 files changed

+11
-5
lines changed

public/fonts/PATRON.ttf

58.2 KB
Binary file not shown.

public/fonts/PATRON.woff

27.9 KB
Binary file not shown.

public/fonts/PATRON.woff2

23.8 KB
Binary file not shown.

src/assets/fonts/PATRON.ttf

58.2 KB
Binary file not shown.

src/assets/fonts/PATRON.woff

27.9 KB
Binary file not shown.

src/assets/fonts/PATRON.woff2

23.8 KB
Binary file not shown.

src/components/PromptExecutionLogo.vue

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,23 @@ onUnmounted(() => {
6161

6262
<style scoped>
6363
64-
/* Font imports for logo text */
65-
@import url('https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron');
66-
64+
/* Font imports for logo text - using local licensed fonts */
6765
@font-face {
6866
font-family: 'Patron-PersonalUse-Regular';
69-
src: url('https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron') format('truetype');
67+
src: url('/fonts/PATRON.woff2') format('woff2'),
68+
url('/fonts/PATRON.woff') format('woff'),
69+
url('/fonts/PATRON.ttf') format('truetype');
70+
font-weight: normal;
71+
font-style: normal;
7072
}
7173
7274
@font-face {
7375
font-family: 'Patron - Personal Use';
74-
src: url('https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron') format('truetype');
76+
src: url('/fonts/PATRON.woff2') format('woff2'),
77+
url('/fonts/PATRON.woff') format('woff'),
78+
url('/fonts/PATRON.ttf') format('truetype');
79+
font-weight: normal;
80+
font-style: normal;
7581
}
7682
7783
@font-face {

0 commit comments

Comments
 (0)