forked from mihaip/infinite-mac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 3.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="A classic Mac loaded with everything you'd want."
/>
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<link
rel="preload"
as="font"
crossorigin="anonymous"
href="/src/Fonts/AppleGaramond.woff2"
/>
<title>Infinite Mac</title>
</head>
<body>
<div id="about" style="position: absolute; top: -1000px; left: -1000px">
<p>
Infinite Mac is a project by
<a href="https://persistent.info">Mihai Parparita</a> to make
classic Mac emulation easily accessible. It uses WebAssembly
ports of
<a href="https://www.gryphel.com/c/minivmac/">Mini vMac</a>,
<a href="https://basilisk.cebix.net/">Basilisk II</a> and
<a href="https://sheepshaver.cebix.net/">SheepShaver</a> to
allow a broad set of System Software/Mac OS versions to run on
the web.
</p>
<p>
Shortcuts to the most popular versions are available:
<a href="https://system6.app">system6.app</a>,
<a href="https://system7.app">system7.app</a>,
<a href="https://kanjitalk7.app">kanjitalk7.app</a>,
<a href="https://macos8.app">macos8.app</a>, and
<a href="https://macos9.app">macos9.app</a>.
</p>
<p>
For a demo of the kinds of capabilities the emulators have, see
<a
href="https://www.youtube.com/embed/tljxs9zuaA8"
target="_blank"
rel="noopener noreferrer"
>this video</a
>. To learn more, including how it was built, see
<a
href="https://blog.persistent.info/search/label/Infinite%20Mac"
>this series of blog posts</a
>. Source code is
<a href="https://github.com/mihaip/infinite-mac"
>available on GitHub</a
>.
</p>
<p>
For feedback, you can reach Mihai
<a class="email">via email</a> or
<a href="https://hachyderm.io/@mihaip">@[email protected]</a>.
For bug reports or software requests, you can also
<a href="https://github.com/mihaip/infinite-mac/issues/new"
>file an issue on GitHub</a
>.
</p>
<p>
If you'd like to support the project, you can
<span class="link donate">donate</span>.
</p>
</div>
<div id="root"></div>
<div id="dialog-root"></div>
<noscript>Infinite Mac requires JavaScript.</noscript>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>