mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-16 21:30:39 -07:00
- Added overflow-x hidden to prevent horizontal scrolling on html and body elements. - Centered the heading and paragraph text on the landing page for improved aesthetics. - Introduced a mobile-friendly centered screenshot above download buttons. - Updated comments for clarity regarding screenshot positioning on different devices.
17 lines
550 B
TypeScript
17 lines
550 B
TypeScript
// Download links for voicebox releases
|
|
// These are fallback values - link to releases page if API fails
|
|
export const LATEST_VERSION = 'v0.1.0';
|
|
|
|
export const GITHUB_REPO = 'https://github.com/jamiepine/voicebox';
|
|
export const GITHUB_RELEASES_PAGE = `${GITHUB_REPO}/releases`;
|
|
|
|
export const DOWNLOAD_LINKS = {
|
|
macArm: GITHUB_RELEASES_PAGE,
|
|
macIntel: GITHUB_RELEASES_PAGE,
|
|
windows: GITHUB_RELEASES_PAGE,
|
|
linux: GITHUB_RELEASES_PAGE,
|
|
} as const;
|
|
|
|
// Export function to get dynamic download links
|
|
export { getLatestRelease } from './releases';
|