File size: 3,144 Bytes
5e093e7
 
 
 
 
 
 
9fc8c27
 
 
 
 
 
 
5e093e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>80,000 Hours AI Assistant</title>
  <meta name="description" content="The 80,000 Hours AI Assistant has moved to a new home." />
  <!-- Auto-navigate to the new site on load — same as clicking the link.
       Loads in place (this frame), so it's seamless. Meta refresh is the
       no-JS fallback. -->
  <meta http-equiv="refresh" content="0; url=https://80000-hrs-ai-assistant.vercel.app/" />
  <script>
    window.location.replace("https://80000-hrs-ai-assistant.vercel.app/");
  </script>
  <style>
    :root {
      --bg: #f7f6f3;
      --fg: #1a1a1a;
      --muted: #6b6b6b;
      --accent: #1a1a1a;
      --accent-fg: #ffffff;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; }
    body {
      background: var(--bg);
      color: var(--fg);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    main {
      max-width: 560px;
      width: 100%;
      text-align: center;
    }
    .badge {
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }
    h1 {
      font-size: clamp(28px, 6vw, 44px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    p {
      font-size: clamp(15px, 2.5vw, 18px);
      color: var(--muted);
      margin-bottom: 36px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--accent-fg);
      text-decoration: none;
      font-size: clamp(16px, 2.5vw, 19px);
      font-weight: 600;
      padding: 18px 32px;
      border-radius: 9999px;
      transition: transform 0.15s ease, opacity 0.15s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    .btn:hover { transform: translateY(-2px); opacity: 0.92; }
    .btn:active { transform: translateY(0); }
    .btn svg { width: 20px; height: 20px; }
    footer {
      margin-top: 40px;
      font-size: 13px;
      color: var(--muted);
    }
    footer a { color: var(--muted); }
  </style>
</head>
<body>
  <main>
    <div class="badge">80,000 Hours</div>
    <h1>The AI Assistant has a new home</h1>
    <p>We've moved to a faster, redesigned version. Click below to start asking about career planning.</p>
    <a class="btn" href="https://80000-hrs-ai-assistant.vercel.app/" rel="noopener">
      Open the new assistant
      <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
        <path d="M5 12h14" />
        <path d="m12 5 7 7-7 7" />
      </svg>
    </a>
    <footer>
      Powered by <a href="https://80000hours.org/" rel="noopener" target="_blank">80,000 Hours</a> content.
    </footer>
  </main>
</body>
</html>