|
1 | 1 | <script lang="ts"> |
2 | 2 | import FeatureCard from './FeatureCard.svelte'; |
3 | 3 |
|
4 | | - const base = import.meta.env.BASE_URL; |
5 | | -
|
6 | 4 | const features = [ |
7 | 5 | { |
8 | 6 | title: "Feels Like Home", |
|
13 | 11 | "Lives in your menu bar for instant access", |
14 | 12 | "Follows Apple's Human Interface Guidelines" |
15 | 13 | ], |
16 | | - imageUrl: `${base}grainy-gradient-feat-1.jpg`, |
17 | | - screenshotUrl: `${base}screenshot-basic.png` |
| 14 | + imageUrl: "/grainy-gradient-feat-1.jpg", |
| 15 | + screenshotUrl: "/screenshot-basic.png" |
18 | 16 | }, |
19 | 17 | { |
20 | 18 | title: "Professional Recording", |
|
25 | 23 | "Record system audio and microphone simultaneously", |
26 | 24 | "Content filtering to exclude specific windows" |
27 | 25 | ], |
28 | | - imageUrl: `${base}grainy-gradient-feat-2.jpg`, |
| 26 | + imageUrl: "/grainy-gradient-feat-2.jpg", |
29 | 27 | badges: ["ProRes 4444", "HEVC", "H.264"] |
30 | 28 | }, |
31 | 29 | { |
|
37 | 35 | "No account required to use the app", |
38 | 36 | "Open source so you can verify our claims" |
39 | 37 | ], |
40 | | - imageUrl: `${base}grainy-gradient-feat-3.jpg`, |
| 38 | + imageUrl: "/grainy-gradient-feat-3.jpg", |
41 | 39 | badges: ["No Tracking", "No Analytics", "100% Local"] |
42 | 40 | }, |
43 | 41 | { |
|
49 | 47 | "Community-driven development", |
50 | 48 | "Contribute features or report bugs on GitHub" |
51 | 49 | ], |
52 | | - imageUrl: `${base}grainy-gradient-feat-4.jpg`, |
| 50 | + imageUrl: "/grainy-gradient-feat-4.jpg", |
53 | 51 | badges: ["MIT License", "100% Free", "Open Source"] |
54 | 52 | } |
55 | 53 | ]; |
|
0 commit comments