summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--[-rwxr-xr-x]index.html1932
1 files changed, 403 insertions, 1529 deletions
diff --git a/index.html b/index.html
index 8003ee4..f9d70d3 100755..100644
--- a/index.html
+++ b/index.html
@@ -4,1620 +4,494 @@
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Thuy (Tyler) Hoang - Finance &amp; Analytics</title>
- <meta name="description" content="Finance professional, CFA Level I candidate, and MS Financial Analytics candidate building a strong edge in valuation, markets, and investor-focused analytics products." />
- <meta property="og:title" content="Thuy (Tyler) Hoang - Finance &amp; Analytics" />
+ <title>Thuy (Tyler) Hoang — Finance &amp; Analytics</title>
+ <meta name="description" content="Finance professional, CFA Level I candidate, and MS Financial Analytics candidate building a strong edge in valuation, markets, and investor-focused analytics." />
+ <meta property="og:title" content="Thuy (Tyler) Hoang — Finance &amp; Analytics" />
<meta property="og:description" content="Finance professional, CFA Level I candidate, and MS Financial Analytics candidate with strengths in valuation, research, markets, and investor-focused product building." />
<meta property="og:url" content="https://tylerhoang.xyz" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
- <meta name="twitter:title" content="Thuy (Tyler) Hoang - Finance &amp; Analytics" />
+ <meta name="twitter:title" content="Thuy (Tyler) Hoang — Finance &amp; Analytics" />
<meta name="twitter:description" content="Finance professional with strengths in valuation, research, markets, and investor-focused product building. CFA Level I candidate and MS Financial Analytics candidate." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
- <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lora:wght@400;500&family=Jost:wght@300;400;500;600&display=swap" rel="stylesheet" />
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
- --bg: #0f0e0d;
- --bg-alt: #151412;
- --panel: #1c1a18;
- --line: rgba(200, 191, 168, 0.10);
- --line-strong: rgba(200, 191, 168, 0.22);
- --text: #e2d9cc;
- --muted: #7a7268;
- --heading: #f0e8de;
- --accent: #c8bfa8;
- --accent-soft: rgba(200, 191, 168, 0.08);
- --accent-strong: #ddd4be;
- --display: "Playfair Display", Georgia, serif;
- --body-font: "Lora", Georgia, serif;
- --ui-font: "Jost", system-ui, sans-serif;
- --section-width: 1160px;
- --radius: 4px;
+ --bg: #0b0d10;
+ --bg-alt: #11141a;
+ --panel: #0f1217;
+ --line: #1c2028;
+ --line-strong: #2a313c;
+ --text: #dde2e8;
+ --muted: #6b7280;
+ --dim: #4b5260;
+ --green: #3ecf8e;
+ --green-dim: #1f8a5b;
+ --red: #e85a5a;
+ --amber: #d9a441;
+ --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
+ --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
html { scroll-behavior: smooth; }
-
- body {
- font-family: var(--body-font);
- background: var(--bg);
- color: var(--text);
- font-size: 16px;
- line-height: 1.75;
- overflow-x: hidden;
- }
-
+ html, body { background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 14px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
- img { max-width: 100%; display: block; }
-
- /* ── Navigation ─────────────────────────────────── */
-
- nav {
- position: fixed;
- inset: 0 0 auto 0;
- z-index: 100;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 1rem;
- padding: 1.1rem 2.5rem;
- background: var(--bg);
- border-bottom: 1px solid var(--line-strong);
- }
-
- .nav-logo {
- font-family: var(--display);
- font-style: italic;
- font-size: 1.05rem;
- font-weight: 400;
- color: var(--accent);
- letter-spacing: 0.01em;
- }
-
- .nav-links {
- display: flex;
- align-items: center;
- gap: 2rem;
- list-style: none;
- }
-
- .nav-links a {
- font-family: var(--ui-font);
- font-size: 0.68rem;
- font-weight: 400;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- color: var(--muted);
- transition: color 0.25s;
- }
-
- .nav-links a:hover { color: var(--accent); }
- /* ── Layout ──────────────────────────────────────── */
+ .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
- section {
- padding: 7rem 5vw;
- position: relative;
+ /* Subtle scanline grain */
+ body::before {
+ content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
+ background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 3px);
+ mix-blend-mode: overlay;
}
+ body > * { position: relative; z-index: 1; }
- .section-shell {
- max-width: var(--section-width);
- margin: 0 auto;
- }
-
- .section-label {
- font-family: var(--ui-font);
- font-size: 0.65rem;
- letter-spacing: 0.22em;
- text-transform: uppercase;
- color: var(--accent);
- margin-bottom: 1rem;
- }
-
- .section-title {
- font-family: var(--display);
- font-size: clamp(2.4rem, 4vw, 3.6rem);
- font-weight: 400;
- line-height: 1.08;
- color: var(--heading);
- margin-bottom: 0.5rem;
- }
-
- .section-rule {
- width: 40px;
- height: 1px;
- background: var(--accent);
- margin: 1.5rem 0 2.8rem;
- opacity: 0.6;
- }
-
- /* ── Hero ────────────────────────────────────────── */
-
- #hero {
- min-height: 100vh;
- padding-top: 7rem;
- display: flex;
- align-items: center;
- border-bottom: 1px solid var(--line);
- }
-
- .hero-shell {
- max-width: var(--section-width);
- margin: 0 auto;
- display: grid;
- grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
- gap: 5rem;
- align-items: center;
- width: 100%;
- }
-
- .hero-left {
- opacity: 0;
- animation: fadeIn 0.8s 0.1s forwards;
- }
-
- .hero-eyebrow {
- font-family: var(--ui-font);
- font-size: 0.65rem;
- letter-spacing: 0.22em;
- text-transform: uppercase;
- color: var(--accent);
- margin-bottom: 1.5rem;
- }
-
- .hero-name {
- font-family: var(--display);
- font-size: clamp(4rem, 7.5vw, 6.8rem);
- font-weight: 400;
- line-height: 0.95;
- letter-spacing: -0.01em;
- color: var(--heading);
- margin-bottom: 1.75rem;
- }
-
- .hero-name em {
- font-style: italic;
- color: var(--accent);
- }
-
- .hero-tagline {
- font-family: var(--body-font);
- font-size: 1.02rem;
- line-height: 1.8;
- color: var(--text);
- max-width: 46ch;
- margin-bottom: 2rem;
- }
-
- .hero-credentials {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- gap: 0;
- margin-bottom: 2.5rem;
- padding-top: 1.5rem;
- border-top: 1px solid var(--line-strong);
- }
-
- .hero-cred {
- font-family: var(--ui-font);
- font-size: 0.7rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
- color: var(--muted);
- padding-right: 1.25rem;
- margin-right: 1.25rem;
- border-right: 1px solid var(--line-strong);
- }
-
- .hero-cred:last-child {
- border-right: none;
- padding-right: 0;
- margin-right: 0;
- }
-
- .hero-ctas {
- display: flex;
- gap: 1rem;
- flex-wrap: wrap;
- }
-
- .btn-primary {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- padding: 0.8rem 1.75rem;
- border-radius: var(--radius);
- background: var(--accent);
- color: var(--bg);
- font-family: var(--ui-font);
- font-size: 0.7rem;
- font-weight: 600;
- letter-spacing: 0.14em;
- text-transform: uppercase;
- transition: background 0.25s, color 0.25s;
- border: 1px solid var(--accent);
- }
-
- .btn-primary:hover {
- background: var(--accent-strong);
- border-color: var(--accent-strong);
- }
-
- .btn-outline {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- padding: 0.8rem 1.75rem;
- border-radius: var(--radius);
- background: transparent;
- color: var(--accent);
- font-family: var(--ui-font);
- font-size: 0.7rem;
- font-weight: 500;
- letter-spacing: 0.14em;
- text-transform: uppercase;
- border: 1px solid var(--line-strong);
- transition: border-color 0.25s, color 0.25s;
- }
+ /* Top bar */
+ .topbar { border-bottom: 1px solid var(--line); padding: 14px 0; }
+ .topbar-inner { display: flex; align-items: center; gap: 28px; font-family: var(--mono); font-size: 12px; }
+ .topbar .logo { color: var(--green); font-weight: 500; letter-spacing: 0.04em; }
+ .topbar .logo::before { content: "$ "; opacity: 0.5; }
+ .topbar nav { display: flex; gap: 22px; }
+ .topbar nav a { color: var(--muted); transition: color 0.15s; }
+ .topbar nav a:hover { color: var(--text); }
+ .topbar .spacer { flex: 1; }
+ .topbar .session { color: var(--dim); }
+ .topbar .session b { color: var(--green); font-weight: 500; }
- .btn-outline:hover {
- border-color: var(--accent);
- color: var(--accent-strong);
- }
-
- .hero-right {
- opacity: 0;
- animation: fadeIn 0.9s 0.35s forwards;
- }
-
- .hero-photo {
- width: 100%;
- aspect-ratio: 3 / 4;
- object-fit: cover;
- object-position: top center;
- border-radius: var(--radius);
- border: 1px solid var(--line-strong);
- display: block;
- margin-bottom: 1px;
- }
-
- .hero-info {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- border: 1px solid var(--line-strong);
- border-radius: 0 0 var(--radius) var(--radius);
- border-top: none;
- overflow: hidden;
- }
-
- .hero-info-item {
- padding: 1rem 1.25rem;
- border-right: 1px solid var(--line);
- }
-
- .hero-info-item:last-child { border-right: none; }
-
- .hero-info-label {
- font-family: var(--ui-font);
- font-size: 0.6rem;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- color: var(--muted);
- margin-bottom: 0.4rem;
- }
-
- .hero-info-value {
- font-family: var(--display);
- font-size: 1.15rem;
- font-weight: 400;
- color: var(--heading);
- line-height: 1.2;
- }
-
- /* ── Focus Band ──────────────────────────────────── */
-
- .focus-band-section {
- padding: 0;
- }
-
- .focus-band {
- background: var(--bg-alt);
- border-top: 1px solid var(--line);
- border-bottom: 1px solid var(--line);
- }
-
- .focus-band-inner {
- max-width: var(--section-width);
- margin: 0 auto;
- padding: 3rem 5vw;
- display: grid;
- grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
- gap: 4rem;
- align-items: start;
- }
-
- .focus-label {
- font-family: var(--ui-font);
- font-size: 0.63rem;
- letter-spacing: 0.2em;
- text-transform: uppercase;
- color: var(--accent);
- margin-bottom: 0.75rem;
- }
-
- .focus-copy {
- font-family: var(--body-font);
- font-size: 0.95rem;
- line-height: 1.75;
- color: var(--text);
- }
-
- .focus-areas-list {
- display: flex;
- flex-direction: column;
- gap: 0;
- }
-
- .focus-area-item {
- display: flex;
- align-items: center;
- gap: 1rem;
- padding: 0.7rem 0;
- border-bottom: 1px solid var(--line);
- font-family: var(--ui-font);
- font-size: 0.72rem;
- letter-spacing: 0.1em;
- text-transform: uppercase;
- color: var(--text);
- }
-
- .focus-area-item:first-child { border-top: 1px solid var(--line); }
-
- .focus-area-num {
- font-family: var(--display);
- font-style: italic;
- font-size: 0.78rem;
- color: var(--muted);
- min-width: 1.5rem;
- }
-
- /* ── About ───────────────────────────────────────── */
-
- #about { background: transparent; }
-
- .about-grid {
- display: grid;
- grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
- gap: 5rem;
- align-items: start;
- }
-
- .about-body p {
- font-size: 1rem;
- line-height: 1.85;
- color: var(--text);
- }
-
- .about-body p + p { margin-top: 1.25rem; }
-
- .about-stats {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 0;
- border: 1px solid var(--line-strong);
- border-radius: var(--radius);
- overflow: hidden;
- }
-
- .stat-item {
- padding: 1.5rem 1.25rem;
- border-right: 1px solid var(--line);
- border-bottom: 1px solid var(--line);
- }
-
- .stat-item:nth-child(2n) { border-right: none; }
- .stat-item:nth-child(3),
- .stat-item:nth-child(4) { border-bottom: none; }
-
- .stat-num {
- font-family: var(--display);
- font-size: 2.4rem;
- font-weight: 400;
- line-height: 1;
- color: var(--heading);
- margin-bottom: 0.4rem;
- }
-
- .stat-label {
- font-family: var(--ui-font);
- font-size: 0.62rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
- color: var(--muted);
- }
+ /* Ticker */
+ .ticker { border-bottom: 1px solid var(--line); background: var(--bg-alt); overflow: hidden; }
+ .ticker-track { display: flex; gap: 48px; padding: 9px 32px; font-family: var(--mono); font-size: 11.5px; color: var(--muted); white-space: nowrap; }
+ .tk { display: inline-flex; gap: 8px; align-items: center; }
+ .tk .sym { color: var(--text); }
+ .tk .val { color: var(--text); }
+ .tk .chg.up { color: var(--green); }
+ .tk .chg.dn { color: var(--red); }
- /* ── Prism ───────────────────────────────────────── */
-
- #prism {
- background: var(--bg-alt);
- border-top: 1px solid var(--line);
- border-bottom: 1px solid var(--line);
- }
-
- .prism-header {
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- gap: 2rem;
- flex-wrap: wrap;
- margin-bottom: 3rem;
- }
-
- .prism-logo-wrap {
- display: flex;
- align-items: center;
- gap: 1rem;
- }
-
- .prism-logo-wrap img {
- height: 44px;
- width: auto;
- }
-
- .prism-logo-name {
- font-family: var(--display);
- font-size: 1.5rem;
- font-weight: 400;
- color: var(--heading);
- line-height: 1.15;
- }
-
- .prism-logo-sub {
- font-family: var(--ui-font);
- font-size: 0.63rem;
- letter-spacing: 0.15em;
- text-transform: uppercase;
- color: var(--muted);
- margin-top: 0.25rem;
- }
-
- .prism-ctas {
- display: flex;
- gap: 0.75rem;
- }
-
- .prism-body {
- display: grid;
- grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
- gap: 3.5rem;
- align-items: start;
- margin-bottom: 3rem;
- }
-
- .prism-desc {
- font-size: 0.98rem;
- line-height: 1.85;
- color: var(--text);
- }
-
- .prism-why {
- border-left: 2px solid var(--accent);
- padding-left: 1.5rem;
- }
-
- .prism-why-label {
- font-family: var(--ui-font);
- font-size: 0.62rem;
- letter-spacing: 0.2em;
- text-transform: uppercase;
- color: var(--accent);
- margin-bottom: 0.75rem;
- }
-
- .prism-why-copy {
- font-size: 0.95rem;
- line-height: 1.75;
- color: var(--text);
- }
-
- .prism-showcase {
- display: grid;
- grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
- gap: 1rem;
- margin-bottom: 3rem;
- }
-
- .prism-main-shot img,
- .prism-side-shots img {
- width: 100%;
- aspect-ratio: 16 / 10;
- object-fit: cover;
- border: 1px solid var(--line-strong);
- border-radius: var(--radius);
- cursor: zoom-in;
- transition: border-color 0.25s;
- }
-
- .prism-side-shots {
- display: grid;
- gap: 1rem;
- }
-
- .prism-main-shot img:hover,
- .prism-side-shots img:hover { border-color: var(--accent); }
-
- .prism-stack-row {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- gap: 0.5rem;
- padding-top: 1.25rem;
- border-top: 1px solid var(--line);
- margin-bottom: 3rem;
- }
-
- .prism-stack-label {
- font-family: var(--ui-font);
- font-size: 0.62rem;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- color: var(--muted);
- margin-right: 0.5rem;
- }
-
- .stack-tag {
- font-family: var(--ui-font);
- font-size: 0.68rem;
- letter-spacing: 0.08em;
- color: var(--text);
- padding: 0.3rem 0.65rem;
- border: 1px solid var(--line-strong);
- border-radius: var(--radius);
- }
-
- .prism-features {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 0;
- border: 1px solid var(--line);
- border-radius: var(--radius);
- overflow: hidden;
- }
-
- .prism-feature {
- padding: 1.5rem 1.75rem;
- border-right: 1px solid var(--line);
- border-bottom: 1px solid var(--line);
- transition: background 0.2s;
- }
-
- .prism-feature:nth-child(2n) { border-right: none; }
- .prism-feature:nth-child(5),
- .prism-feature:nth-child(6) { border-bottom: none; }
-
- .prism-feature:hover { background: var(--accent-soft); }
-
- .prism-feature-title {
- font-family: var(--ui-font);
- font-size: 0.7rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
- color: var(--accent);
- margin-bottom: 0.6rem;
- }
-
- .prism-feature-desc {
- font-size: 0.92rem;
- line-height: 1.7;
- color: var(--muted);
- }
-
- /* ── Projects ────────────────────────────────────── */
-
- #projects { background: transparent; }
-
- .projects-list {
- display: flex;
- flex-direction: column;
- }
-
- .project-item {
- display: grid;
- grid-template-columns: 3rem minmax(0, 1fr) auto;
- gap: 1.5rem 2rem;
- align-items: baseline;
- padding: 2rem 0;
- border-top: 1px solid var(--line);
- transition: background 0.2s;
- cursor: default;
- position: relative;
- }
-
- .project-item:last-child { border-bottom: 1px solid var(--line); }
-
- .project-item::before {
- content: "";
- position: absolute;
- left: -5vw;
- right: -5vw;
- top: 0;
- bottom: 0;
- background: var(--accent-soft);
- opacity: 0;
- transition: opacity 0.2s;
+ /* HERO */
+ .hero { padding: 72px 0 64px; border-bottom: 1px solid var(--line); position: relative; }
+ .hero::before { content: ""; position: absolute; inset: 0; background:
+ radial-gradient(ellipse 600px 200px at 20% 0%, rgba(62,207,142,0.07), transparent 70%),
+ radial-gradient(ellipse 400px 200px at 90% 100%, rgba(62,207,142,0.04), transparent 70%);
pointer-events: none;
}
+ .hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; position: relative; }
+ .hero-left .meta { font-family: var(--mono); font-size: 11.5px; color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px 18px; }
+ .hero-left .meta span::before { content: "// "; color: var(--green-dim); }
+ .hero h1 { font-family: var(--sans); font-weight: 600; font-size: 64px; letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 22px; }
+ .hero h1 .accent { color: var(--green); }
+ .hero p.lede { color: var(--muted); font-size: 16px; max-width: 540px; margin-bottom: 30px; }
+ .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
- .project-item:hover::before { opacity: 1; }
-
- .project-num {
- font-family: var(--display);
- font-style: italic;
- font-size: 0.85rem;
- color: var(--muted);
- line-height: 1;
- }
-
- .project-body {}
-
- .project-category {
- font-family: var(--ui-font);
- font-size: 0.62rem;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- color: var(--accent);
- margin-bottom: 0.5rem;
- }
-
- .project-title {
- font-family: var(--display);
- font-size: 1.45rem;
- font-weight: 400;
- color: var(--heading);
- line-height: 1.2;
- margin-bottom: 0.75rem;
- }
-
- .project-desc {
- font-size: 0.9rem;
- line-height: 1.75;
- color: var(--muted);
- max-width: 68ch;
- margin-bottom: 1rem;
- }
-
- .project-tags {
- display: flex;
- flex-wrap: wrap;
- gap: 0.4rem;
- }
-
- .project-tag {
- font-family: var(--ui-font);
- font-size: 0.63rem;
- letter-spacing: 0.1em;
- text-transform: uppercase;
- color: var(--muted);
- padding: 0.25rem 0.6rem;
- border: 1px solid var(--line-strong);
- border-radius: var(--radius);
- }
-
- .project-meta {
- text-align: right;
- flex-shrink: 0;
- }
-
- .project-date {
- font-family: var(--ui-font);
- font-size: 0.65rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
- color: var(--muted);
- display: block;
- margin-bottom: 0.6rem;
- }
-
- .project-link {
- font-family: var(--ui-font);
- font-size: 0.65rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
- color: var(--accent);
- border-bottom: 1px solid var(--line-strong);
- transition: border-color 0.2s;
- padding-bottom: 1px;
- }
-
- .project-link:hover { border-color: var(--accent); }
-
- /* ── Skills ──────────────────────────────────────── */
-
- #skills {
- background: var(--bg-alt);
- border-top: 1px solid var(--line);
- border-bottom: 1px solid var(--line);
- }
-
- .skills-grid {
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- gap: 0;
- border: 1px solid var(--line);
- border-radius: var(--radius);
- overflow: hidden;
- }
-
- .skill-group {
- padding: 0;
- border-right: 1px solid var(--line);
- }
-
- .skill-group:last-child { border-right: none; }
-
- .skill-group-title {
- font-family: var(--ui-font);
- font-size: 0.62rem;
- letter-spacing: 0.2em;
- text-transform: uppercase;
- color: var(--accent);
- padding: 1.25rem 1.5rem 1rem;
- border-bottom: 1px solid var(--line);
- }
-
- .skill-list {
- list-style: none;
- padding: 0.5rem 0;
- }
-
- .skill-list li {
- font-family: var(--body-font);
- font-size: 0.88rem;
- color: var(--text);
- padding: 0.55rem 1.5rem;
- border-bottom: 1px solid var(--line);
- line-height: 1.4;
- }
-
- .skill-list li:last-child { border-bottom: none; }
+ .btn { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; padding: 12px 18px; border: 1px solid var(--line-strong); background: transparent; color: var(--text); cursor: pointer; display: inline-block; transition: all 0.15s; }
+ .btn.primary { background: var(--green); color: #07120c; border-color: var(--green); font-weight: 500; }
+ .btn:hover { border-color: var(--green); color: var(--green); }
+ .btn.primary:hover { background: transparent; color: var(--green); }
- /* ── Resume ──────────────────────────────────────── */
+ /* Research note card */
+ .note { background: var(--panel); border: 1px solid var(--line); }
+ .note-head { padding: 12px 16px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--muted); }
+ .note-head .tag { color: var(--green); }
+ .note-body { padding: 6px 18px; }
+ .note-body .row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--line); font-family: var(--mono); font-size: 12.5px; }
+ .note-body .row:last-child { border-bottom: 0; }
+ .note-body .row .k { color: var(--muted); }
+ .note-body .row .v { color: var(--text); }
+ .note-body .row .v.green { color: var(--green); }
+ .note-foot { padding: 12px 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10.5px; color: var(--dim); }
- #resume { background: transparent; }
+ /* Sections */
+ section.panel { padding: 64px 0; border-bottom: 1px solid var(--line); }
+ .sec-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 32px; flex-wrap: wrap; }
+ .sec-head .num { font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: 0.12em; }
+ .sec-head h2 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
+ .sec-head .sub { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-left: auto; }
- .resume-inner {
- max-width: 780px;
- }
+ /* About */
+ .about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; }
+ .about p { color: var(--text); font-size: 15px; margin-bottom: 16px; }
+ .about p .drop { color: var(--green); font-family: var(--mono); margin-right: 4px; }
+ .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
+ .stat { background: var(--panel); padding: 18px 18px; }
+ .stat .lbl { font-family: var(--mono); font-size: 10.5px; color: var(--dim); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
+ .stat .val { font-family: var(--mono); font-size: 22px; color: var(--text); }
+ .stat .val .unit { color: var(--green); font-size: 14px; margin-left: 4px; }
- .resume-desc {
- font-size: 0.98rem;
- line-height: 1.8;
- color: var(--muted);
- margin-bottom: 2.5rem;
- }
+ /* Prism */
+ .prism { background: var(--panel); border: 1px solid var(--line); }
+ .prism-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
+ .prism-head .ticker-tag { font-family: var(--mono); font-size: 11px; color: var(--green); padding: 3px 8px; border: 1px solid var(--green-dim); border-radius: 2px; }
+ .prism-head h3 { font-size: 22px; font-weight: 500; }
+ .prism-head .meta { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--dim); }
+ .prism-body { display: grid; grid-template-columns: 1.4fr 1fr; }
+ .prism-body .left { padding: 28px 24px; border-right: 1px solid var(--line); }
+ .prism-body .left p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
+ .prism-body .left .ctas { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
+ .prism-body .right { padding: 0; }
+ .prism-body .right .row { padding: 18px 22px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 24px 1fr auto; gap: 12px; align-items: start; }
+ .prism-body .right .row:last-child { border-bottom: 0; }
+ .prism-body .right .row .idx { font-family: var(--mono); font-size: 11px; color: var(--green); padding-top: 2px; }
+ .prism-body .right .row h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
+ .prism-body .right .row p { font-size: 12.5px; color: var(--muted); }
+ .prism-body .right .row .arrow { color: var(--dim); font-family: var(--mono); }
+ .prism-foot { padding: 16px 22px; border-top: 1px solid var(--line); display: flex; gap: 12px; font-family: var(--mono); font-size: 11.5px; color: var(--dim); flex-wrap: wrap; }
+ .prism-foot span { padding: 3px 8px; border: 1px solid var(--line-strong); border-radius: 2px; }
- .resume-list {
- list-style: none;
- margin-bottom: 3rem;
- }
+ /* Skills */
+ .skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
+ .sk { background: var(--panel); padding: 18px 18px; }
+ .sk h4 { font-family: var(--mono); font-size: 11px; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
+ .sk ul { list-style: none; }
+ .sk li { font-family: var(--mono); font-size: 13px; padding: 4px 0; color: var(--text); display: flex; justify-content: space-between; }
+ .sk li .dot-c { color: var(--dim); }
- .resume-list li {
- display: flex;
- align-items: baseline;
- gap: 1.25rem;
- padding: 0.9rem 0;
- border-bottom: 1px solid var(--line);
- font-family: var(--body-font);
- font-size: 0.97rem;
- color: var(--text);
- line-height: 1.6;
- }
+ /* Projects list */
+ .proj-list { border: 1px solid var(--line); }
+ .proj { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; padding: 22px 22px; border-bottom: 1px solid var(--line); align-items: start; }
+ .proj:last-child { border-bottom: 0; }
+ .proj .idx { font-family: var(--mono); font-size: 13px; color: var(--green); }
+ .proj h4 { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
+ .proj .cat { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-bottom: 8px; }
+ .proj p { color: var(--muted); font-size: 13.5px; max-width: 760px; }
+ .proj .tags { display: flex; gap: 6px; flex-direction: column; align-items: flex-end; }
+ .proj .tag { font-family: var(--mono); font-size: 10.5px; color: var(--muted); padding: 3px 8px; border: 1px solid var(--line-strong); }
- .resume-list li:first-child { border-top: 1px solid var(--line); }
+ /* Resume */
+ .resume-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
+ .resume-cell { background: var(--panel); padding: 22px 22px; }
+ .resume-cell h4 { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
+ .resume-cell .where { font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
+ .resume-cell .when { font-family: var(--mono); font-size: 11px; color: var(--green); margin-bottom: 8px; }
+ .resume-cell p { font-size: 13.5px; color: var(--muted); }
+ .resume-actions { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
- .resume-list li::before {
- content: "—";
- font-family: var(--display);
- color: var(--accent);
- flex-shrink: 0;
- font-size: 0.85rem;
- }
+ /* Contact */
+ .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
+ .contact p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
+ .contact .links { display: flex; flex-direction: column; gap: 10px; font-family: var(--mono); font-size: 13px; }
+ .contact .links a { color: var(--text); border-bottom: 1px dashed var(--line-strong); padding-bottom: 4px; }
+ .contact .links a:hover { color: var(--green); border-color: var(--green-dim); }
+ .contact form { display: flex; flex-direction: column; gap: 10px; }
+ .contact input, .contact textarea { background: var(--panel); border: 1px solid var(--line); color: var(--text); font-family: var(--mono); font-size: 13px; padding: 12px 14px; }
+ .contact input:focus, .contact textarea:focus { outline: 0; border-color: var(--green-dim); }
+ .contact textarea { min-height: 110px; resize: vertical; }
+ .contact .form-foot { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
+ .contact .status { font-family: var(--mono); font-size: 12px; color: var(--muted); }
+ .contact .status.ok { color: var(--green); }
+ .contact .status.err { color: var(--red); }
- .resume-ornament {
- display: flex;
- align-items: center;
- gap: 1rem;
- margin-bottom: 2rem;
- }
+ /* Footer */
+ footer { padding: 28px 0; }
+ footer .wrap { font-family: var(--mono); font-size: 11px; color: var(--dim); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
- .resume-ornament-line {
- flex: 1;
- height: 1px;
- background: var(--line-strong);
- }
-
- .resume-ornament-dot {
- font-family: var(--display);
- color: var(--accent);
- font-size: 1.2rem;
- }
-
- .resume-downloads {
- display: flex;
- gap: 1rem;
- }
-
- /* ── Contact ─────────────────────────────────────── */
-
- #contact {
- background: var(--bg-alt);
- border-top: 1px solid var(--line);
- }
-
- .contact-grid {
- display: grid;
- grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
- gap: 5rem;
- align-items: start;
- }
-
- .contact-text {
- font-size: 0.98rem;
- line-height: 1.85;
- color: var(--text);
- margin-bottom: 2.5rem;
- }
-
- .contact-links {
- display: flex;
- flex-direction: column;
- gap: 0;
- }
-
- .contact-link {
- display: flex;
- align-items: center;
- gap: 1.25rem;
- padding: 1rem 0;
- border-bottom: 1px solid var(--line);
- font-family: var(--body-font);
- font-size: 0.92rem;
- color: var(--text);
- transition: color 0.2s;
- }
-
- .contact-link:first-child { border-top: 1px solid var(--line); }
- .contact-link:hover { color: var(--accent); }
-
- .contact-link-icon {
- width: 36px;
- height: 36px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- color: var(--muted);
- transition: color 0.2s;
- }
-
- .contact-link:hover .contact-link-icon { color: var(--accent); }
-
- .contact-link-icon svg {
- width: 16px;
- height: 16px;
- }
-
- .contact-form {
- display: flex;
- flex-direction: column;
- gap: 1.5rem;
- }
-
- .form-group {
- display: flex;
- flex-direction: column;
- gap: 0.5rem;
- }
-
- .form-label {
- font-family: var(--ui-font);
- font-size: 0.62rem;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- color: var(--muted);
- }
-
- .form-input,
- .form-textarea {
- width: 100%;
- background: transparent;
- border: none;
- border-bottom: 1px solid var(--line-strong);
- border-radius: 0;
- padding: 0.65rem 0;
- font-family: var(--body-font);
- font-size: 0.95rem;
- color: var(--text);
- outline: none;
- transition: border-color 0.2s;
- }
-
- .form-input:focus,
- .form-textarea:focus { border-bottom-color: var(--accent); }
-
- .form-input::placeholder,
- .form-textarea::placeholder { color: var(--muted); opacity: 0.6; }
-
- .form-textarea {
- min-height: 120px;
- resize: vertical;
- line-height: 1.6;
- }
-
- .form-submit {
- align-self: flex-start;
- }
-
- /* ── Footer ──────────────────────────────────────── */
-
- footer {
- padding: 2rem 2.5rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 1rem;
- border-top: 1px solid var(--line);
- max-width: 100%;
- }
-
- .footer-name {
- font-family: var(--display);
- font-style: italic;
- font-size: 0.92rem;
- color: var(--accent);
- }
-
- .footer-copy {
- font-family: var(--ui-font);
- font-size: 0.62rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
- color: var(--muted);
- }
-
- /* ── Lightbox ────────────────────────────────────── */
-
- .lightbox {
- position: fixed;
- inset: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 2rem;
- background: rgba(8, 7, 6, 0.92);
- opacity: 0;
- pointer-events: none;
- transition: opacity 0.25s;
- z-index: 9999;
- }
-
- .lightbox.active {
- opacity: 1;
- pointer-events: auto;
- }
-
- .lightbox img {
- max-width: min(96vw, 1600px);
- max-height: 90vh;
- width: auto;
- height: auto;
- border-radius: var(--radius);
- border: 1px solid var(--line-strong);
- }
-
- .lightbox-close {
- position: absolute;
- top: 1.5rem;
- right: 1.5rem;
- width: 40px;
- height: 40px;
- border: 1px solid var(--line-strong);
- border-radius: var(--radius);
- background: var(--panel);
- color: var(--text);
- font-family: var(--ui-font);
- font-size: 1rem;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: border-color 0.2s, color 0.2s;
- }
-
- .lightbox-close:hover { border-color: var(--accent); color: var(--accent); }
-
- /* ── Scroll Reveal ───────────────────────────────── */
-
- .reveal {
- opacity: 0;
- transition: opacity 0.7s ease;
- }
-
- .reveal.visible { opacity: 1; }
-
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
-
- /* ── Responsive ──────────────────────────────────── */
-
- @media (max-width: 1040px) {
- .hero-shell,
- .about-grid,
- .contact-grid {
- grid-template-columns: 1fr;
- gap: 3rem;
- }
-
- .hero-right { display: none; }
-
- .focus-band-inner {
- grid-template-columns: 1fr;
- gap: 2.5rem;
- }
-
- .prism-body,
- .prism-showcase {
- grid-template-columns: 1fr;
- }
-
- .skills-grid {
- grid-template-columns: repeat(2, 1fr);
- }
-
- .skill-group:nth-child(2) { border-right: none; }
- .skill-group:nth-child(3) { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
- .skill-group:nth-child(4) { border-right: none; border-top: 1px solid var(--line); }
-
- .project-item {
- grid-template-columns: 3rem 1fr;
- }
-
- .project-meta {
- grid-column: 2;
- text-align: left;
- }
- }
-
- @media (max-width: 760px) {
- nav {
- padding: 0.9rem 1.25rem;
- overflow-x: auto;
- }
-
- .nav-logo { display: none; }
-
- .nav-links {
- width: 100%;
- gap: 1.25rem;
- flex-wrap: nowrap;
- overflow-x: auto;
- white-space: nowrap;
- scrollbar-width: none;
- }
-
- .nav-links::-webkit-scrollbar { display: none; }
-
- section { padding: 4.5rem 5vw; }
-
- #hero { padding-top: 6rem; min-height: auto; }
-
- .hero-name { font-size: clamp(3rem, 14vw, 4.5rem); }
-
- .prism-features { grid-template-columns: 1fr; }
- .prism-feature:nth-child(5) { border-bottom: 1px solid var(--line); }
- .prism-feature:nth-child(6) { border-bottom: none; }
- .prism-feature:nth-child(2n) { border-right: none; }
-
- .skills-grid {
- grid-template-columns: 1fr;
- }
-
- .skill-group { border-right: none; border-top: 1px solid var(--line); }
- .skill-group:first-child { border-top: none; }
-
- .project-item {
- grid-template-columns: 1fr;
- gap: 0.5rem;
- }
-
- .project-num { display: none; }
-
- .project-meta { text-align: left; }
-
- .resume-downloads { flex-direction: column; }
- .resume-downloads .btn-primary,
- .resume-downloads .btn-outline { width: 100%; text-align: center; justify-content: center; }
-
- .hero-credentials { gap: 0.6rem; }
-
- footer { flex-direction: column; align-items: flex-start; padding: 1.75rem 1.25rem; }
+ @media (max-width: 900px) {
+ .hero h1 { font-size: 40px; }
+ .hero-grid, .about-grid, .prism-body, .contact-grid, .resume-grid { grid-template-columns: 1fr; }
+ .prism-body .left { border-right: 0; border-bottom: 1px solid var(--line); }
+ .skills-grid { grid-template-columns: 1fr; }
+ .topbar nav { display: none; }
+ .proj { grid-template-columns: 40px 1fr; }
+ .proj .tags { grid-column: 2; flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
}
</style>
</head>
<body>
- <nav>
- <a href="#hero" class="nav-logo">Thuy (Tyler) Hoang</a>
- <ul class="nav-links">
- <li><a href="#about">About</a></li>
- <li><a href="#prism">Prism</a></li>
- <li><a href="#projects">Projects</a></li>
- <li><a href="#skills">Skills</a></li>
- <li><a href="#resume">Resume</a></li>
- <li><a href="#contact">Contact</a></li>
- </ul>
- </nav>
+<!-- TOP BAR -->
+<div class="wrap">
+ <div class="topbar">
+ <div class="topbar-inner">
+ <div class="logo">tyler.hoang</div>
+ <nav>
+ <a href="#about">/about</a>
+ <a href="#prism">/prism</a>
+ <a href="#projects">/projects</a>
+ <a href="#skills">/skills</a>
+ <a href="#resume">/resume</a>
+ <a href="#contact">/contact</a>
+ </nav>
+ <div class="spacer"></div>
+ <div class="session">SESS <b>OPEN</b> · UTC-08</div>
+ </div>
+ </div>
+</div>
+
+<!-- TICKER -->
+<div class="ticker">
+ <div class="ticker-track">
+ <div class="tk"><span class="sym">SPX</span><span class="val">5,238.42</span><span class="chg up">+0.41%</span></div>
+ <div class="tk"><span class="sym">NDX</span><span class="val">18,427.10</span><span class="chg up">+0.62%</span></div>
+ <div class="tk"><span class="sym">DJI</span><span class="val">39,118.86</span><span class="chg dn">-0.18%</span></div>
+ <div class="tk"><span class="sym">VIX</span><span class="val">14.27</span><span class="chg dn">-2.31%</span></div>
+ <div class="tk"><span class="sym">US10Y</span><span class="val">4.182%</span><span class="chg up">+3bp</span></div>
+ <div class="tk"><span class="sym">DXY</span><span class="val">103.94</span><span class="chg up">+0.12%</span></div>
+ <div class="tk"><span class="sym">BTC</span><span class="val">63,840</span><span class="chg up">+1.18%</span></div>
+ <div class="tk"><span class="sym">$TYLER</span><span class="val">●</span><span class="chg up">CFA L1 · MSFA</span></div>
+ </div>
+</div>
- <section id="hero">
- <div class="hero-shell">
+<!-- HERO -->
+<div class="wrap">
+ <section class="hero">
+ <div class="hero-grid">
<div class="hero-left">
- <p class="hero-eyebrow">Finance &amp; Analytics</p>
- <h1 class="hero-name">Thuy<br><em>(Tyler)</em><br>Hoang</h1>
- <p class="hero-tagline">Finance professional, CFA Level I candidate, and MS Financial Analytics candidate building a strong edge in valuation, markets, and investor-focused analytics.</p>
- <div class="hero-credentials">
- <span class="hero-cred">CFA® Level I Candidate</span>
- <span class="hero-cred">FINRA SIE Certified</span>
- <span class="hero-cred">JPMorgan Chase</span>
+ <div class="meta">
+ <span>CSULB · MSFA</span>
+ <span>JPMORGAN CHASE</span>
+ <span>ASSET MGMT</span>
</div>
+ <h1>Thuy (Tyler) Hoang.<br/>Finance, <span class="accent">modeled.</span></h1>
+ <p class="lede">Finance professional, CFA Level I candidate, and MS Financial Analytics candidate. Building an edge in valuation, market structure, and investor-focused analytics — with code that holds up to scrutiny.</p>
<div class="hero-ctas">
- <a href="#resume" class="btn-primary">View Resume</a>
- <a href="#contact" class="btn-outline">Get in Touch</a>
+ <a class="btn primary" href="#prism">→ View Prism</a>
+ <a class="btn" href="#contact">/contact</a>
</div>
</div>
- <div class="hero-right">
- <img src="tyler.jpg" alt="Tyler Hoang" class="hero-photo" />
- <div class="hero-info">
- <div class="hero-info-item">
- <span class="hero-info-label">Expected</span>
- <span class="hero-info-value">Aug 2026</span>
- </div>
- <div class="hero-info-item">
- <span class="hero-info-label">Focus</span>
- <span class="hero-info-value">Asset Mgmt</span>
- </div>
- <div class="hero-info-item">
- <span class="hero-info-label">Program</span>
- <span class="hero-info-value">MSFA</span>
- </div>
+
+ <div class="note">
+ <div class="note-head"><span>RESEARCH_NOTE / 2026-Q2</span><span class="tag">● ACTIVE</span></div>
+ <div class="note-body">
+ <div class="row"><span class="k">TICKER</span><span class="v">$TYLER</span></div>
+ <div class="row"><span class="k">SECTOR</span><span class="v">Asset Management</span></div>
+ <div class="row"><span class="k">STATUS</span><span class="v green">SEEKING · AM / RESEARCH</span></div>
+ <div class="row"><span class="k">CREDENTIALS</span><span class="v">CFA L1 · SIE</span></div>
+ <div class="row"><span class="k">PROGRAM</span><span class="v">MSFA · CSULB · Aug'26</span></div>
+ <div class="row"><span class="k">GPAs</span><span class="v">3.75 / 3.75 / 4.00</span></div>
</div>
+ <div class="note-foot"><span>UPDATED 2026-06-16</span><span>v2.1</span></div>
</div>
</div>
</section>
- <div class="focus-band-section">
- <div class="focus-band">
- <div class="focus-band-inner reveal">
- <div class="focus-left">
- <p class="focus-label">Currently Seeking</p>
- <p class="focus-copy">Targeting high-trust roles in asset management, investment research, and quantitative finance where rigorous analysis and strong judgment are valued.</p>
- </div>
- <div class="focus-right">
- <p class="focus-label">Selected Focus Areas</p>
- <div class="focus-areas-list">
- <div class="focus-area-item"><span class="focus-area-num">i.</span> Equity Research</div>
- <div class="focus-area-item"><span class="focus-area-num">ii.</span> Fixed Income</div>
- <div class="focus-area-item"><span class="focus-area-num">iii.</span> Valuation</div>
- <div class="focus-area-item"><span class="focus-area-num">iv.</span> Quantitative Analysis</div>
- <div class="focus-area-item"><span class="focus-area-num">v.</span> Financial Modeling</div>
- </div>
- </div>
+ <!-- ABOUT -->
+ <section class="panel" id="about">
+ <div class="sec-head"><span class="num">00 /</span><h2>About</h2><span class="sub">background.md</span></div>
+ <div class="about-grid">
+ <div>
+ <p><span class="drop">&gt;</span> Finance professional pursuing my Master of Science in Financial Analytics at California State University, Long Beach, with an expected graduation of August 2026. CFA Level I candidate with a strong interest in asset management, investment research, and market-driven decision-making.</p>
+ <p>My background combines client-facing banking and branch operations at JPMorgan Chase — internal controls, cash management, operational compliance — with quantitative financial modeling and academic work in fixed income, derivatives pricing, machine learning, and valuation.</p>
+ <p>I bring analytical depth and an execution mindset — comfortable with financial statements, market data, and the tools that make research faster. FINRA SIE certified. Fluent in English and Vietnamese.</p>
</div>
- </div>
- </div>
-
- <section id="about">
- <div class="section-shell">
- <p class="section-label reveal">Background</p>
- <h2 class="section-title reveal">About Me</h2>
- <div class="section-rule reveal"></div>
- <div class="about-grid">
- <div class="about-body reveal">
- <p>I'm a finance professional pursuing my Master of Science in Financial Analytics at California State University, Long Beach, with an expected graduation of August 2026. I'm also a CFA Level I candidate with a strong interest in asset management, investment research, and market-driven decision-making.</p>
- <p>My background combines client-facing banking and branch operations at JPMorgan Chase — including internal controls, cash management, and operational compliance — with quantitative financial modeling and academic work in fixed income, derivatives pricing, machine learning, and valuation.</p>
- <p>I bring analytical depth and an execution mindset — comfortable with financial statements, market data, and the tools that make research faster. I also hold the FINRA SIE certification and am fluent in both English and Vietnamese.</p>
- </div>
- <div class="about-stats reveal">
- <div class="stat-item">
- <div class="stat-num">CFA</div>
- <div class="stat-label">Level I Candidate</div>
- </div>
- <div class="stat-item">
- <div class="stat-num">3.75</div>
- <div class="stat-label">CSULB GPA</div>
- </div>
- <div class="stat-item">
- <div class="stat-num">3.75</div>
- <div class="stat-label">CSUF GPA</div>
- </div>
- <div class="stat-item">
- <div class="stat-num">4.0</div>
- <div class="stat-label">OCC GPA</div>
- </div>
+ <div>
+ <div class="stats">
+ <div class="stat"><div class="lbl">CFA · Level I</div><div class="val">CAND<span class="unit">'26</span></div></div>
+ <div class="stat"><div class="lbl">CSULB GPA</div><div class="val">3.75</div></div>
+ <div class="stat"><div class="lbl">CSUF GPA</div><div class="val">3.75</div></div>
+ <div class="stat"><div class="lbl">OCC GPA</div><div class="val">4.00</div></div>
+ <div class="stat"><div class="lbl">Certifications</div><div class="val">SIE</div></div>
+ <div class="stat"><div class="lbl">Languages</div><div class="val">EN · VI</div></div>
</div>
</div>
</div>
</section>
- <section id="prism">
- <div class="section-shell">
- <p class="section-label reveal">Featured Project</p>
- <h2 class="section-title reveal">Prism</h2>
- <div class="section-rule reveal"></div>
-
- <div class="prism-header reveal">
- <div class="prism-logo-wrap">
- <img src="assets/prism/logo-current.png" alt="Prism logo" />
- <div>
- <div class="prism-logo-name">Prism</div>
- <div class="prism-logo-sub">Financial Analysis Dashboard &mdash; Spring 2026</div>
- </div>
- </div>
- <div class="prism-ctas">
- <a href="https://prism.tylerhoang.xyz" class="btn-primary" target="_blank">Live Demo</a>
- <a href="https://git.tylerhoang.xyz/prism.git" class="btn-outline" target="_blank">View Code</a>
- </div>
- </div>
+ <!-- PRISM -->
+ <section class="panel" id="prism">
+ <div class="sec-head"><span class="num">01 /</span><h2>Prism — Featured Project</h2><span class="sub">spring_2026</span></div>
- <div class="prism-body reveal">
- <p class="prism-desc">Prism is an investor-focused financial analysis dashboard I built to compress the research workflow into one place. It brings together live market data, financial statements, self-computed valuation ratios, comparable-company analysis, options activity, insider trades, SEC filings, and news so a user can move from initial idea to real underwriting faster. I also engineered the valuation layer to handle edge cases cleanly — including non-meaningful P/E, negative free cash flow in DCF, and messy accounting-driven ratio distortions — so the output is more usable in real analysis, not just visually impressive.</p>
- <div class="prism-why">
- <div class="prism-why-label">Why It Matters</div>
- <p class="prism-why-copy">Prism turns scattered analyst work into a single workflow: evaluate the business, check valuation, review options and insider activity, scan filings, and understand market context without bouncing across five different tools.</p>
- </div>
+ <div class="prism">
+ <div class="prism-head">
+ <span class="ticker-tag">PRSM</span>
+ <h3>Investor-focused financial analysis dashboard</h3>
+ <div class="meta">SPRING 2026 · v0.4 · LIVE</div>
</div>
-
- <div class="prism-showcase reveal">
- <div class="prism-main-shot">
- <img src="assets/prism/overview.png" alt="Prism overview dashboard" data-lightbox="prism" />
+ <div class="prism-body">
+ <div class="left">
+ <p>Compresses the research workflow into one place: live market data, financial statements, self-computed valuation ratios, comparable-company analysis, options activity, insider trades, SEC filings, and news — from initial idea to underwriting in one interface.</p>
+ <p>The valuation layer handles edge cases explicitly: non-meaningful P/E, negative free cash flow in DCF, and accounting-driven ratio distortions. Output is usable in real analysis, not just visually impressive.</p>
+ <div class="ctas">
+ <a class="btn primary" href="https://prism.tylerhoang.xyz" target="_blank" rel="noopener">→ Live Demo</a>
+ <a class="btn" href="https://git.tylerhoang.xyz/prism" target="_blank" rel="noopener">/view_code</a>
+ </div>
</div>
- <div class="prism-side-shots">
- <img src="assets/prism/valuation.png" alt="Prism valuation dashboard" data-lightbox="prism" />
- <img src="assets/prism/insiders.png" alt="Prism insiders dashboard" data-lightbox="prism" />
+ <div class="right">
+ <div class="row"><span class="idx">01</span><div><h4>Research Workflow</h4><p>Move from idea generation to underwriting without bouncing across five tools.</p></div><span class="arrow">→</span></div>
+ <div class="row"><span class="idx">02</span><div><h4>Valuation Engine</h4><p>DCF, EV/EBITDA, and comps with explicit handling for negative earnings, EBITDA, cash flow edge cases.</p></div><span class="arrow">→</span></div>
+ <div class="row"><span class="idx">03</span><div><h4>Fundamentals</h4><p>Financial statements, key ratios, historical views to spot business quality and trend changes.</p></div><span class="arrow">→</span></div>
+ <div class="row"><span class="idx">04</span><div><h4>Options &amp; Positioning</h4><p>Options flow, volatility context, insider activity — fundamental story vs. positioning.</p></div><span class="arrow">→</span></div>
+ <div class="row"><span class="idx">05</span><div><h4>Filings &amp; Catalysts</h4><p>SEC filings and company disclosures, with direct EDGAR access for primary-source review.</p></div><span class="arrow">→</span></div>
+ <div class="row"><span class="idx">06</span><div><h4>Market Context</h4><p>Indices, rates, volatility, commodities, and news for the macro backdrop.</p></div><span class="arrow">→</span></div>
</div>
</div>
-
- <div class="prism-stack-row reveal">
- <span class="prism-stack-label">Stack</span>
- <span class="stack-tag">Python</span>
- <span class="stack-tag">Streamlit</span>
- <span class="stack-tag">yfinance</span>
- <span class="stack-tag">pandas</span>
- <span class="stack-tag">Plotly</span>
- <span class="stack-tag">SEC EDGAR API</span>
- <span class="stack-tag">Nginx</span>
- <span class="stack-tag">systemd</span>
- </div>
-
- <div class="prism-features reveal">
- <div class="prism-feature">
- <div class="prism-feature-title">Research Workflow</div>
- <div class="prism-feature-desc">Built to move from idea generation to underwriting quickly by keeping core research inputs in one interface.</div>
- </div>
- <div class="prism-feature">
- <div class="prism-feature-title">Valuation Engine</div>
- <div class="prism-feature-desc">DCF, EV/EBITDA, and comps with cleaner bridge logic and explicit handling for negative earnings, EBITDA, and cash flow edge cases.</div>
- </div>
- <div class="prism-feature">
- <div class="prism-feature-title">Fundamentals</div>
- <div class="prism-feature-desc">Financial statements, key ratios, and historical views designed to make business quality and trend changes easier to spot.</div>
- </div>
- <div class="prism-feature">
- <div class="prism-feature-title">Options &amp; Positioning</div>
- <div class="prism-feature-desc">Options flow, volatility context, and insider activity help surface how positioning lines up with the fundamental story.</div>
- </div>
- <div class="prism-feature">
- <div class="prism-feature-title">Filings &amp; Catalysts</div>
- <div class="prism-feature-desc">SEC filings and company-specific disclosures are easy to scan, with direct EDGAR access for primary-source review.</div>
- </div>
- <div class="prism-feature">
- <div class="prism-feature-title">Market Context</div>
- <div class="prism-feature-desc">Indices, rates, volatility, commodities, and news add the macro backdrop needed to interpret single-name moves.</div>
- </div>
+ <div class="prism-foot">
+ <span>python</span><span>streamlit</span><span>yfinance</span><span>pandas</span><span>plotly</span><span>sec-edgar-api</span><span>nginx</span><span>systemd</span>
</div>
</div>
</section>
- <section id="projects">
- <div class="section-shell">
- <p class="section-label reveal">Academic Work</p>
- <h2 class="section-title reveal">Other Projects</h2>
- <div class="section-rule reveal"></div>
+ <!-- PROJECTS -->
+ <section class="panel" id="projects">
+ <div class="sec-head"><span class="num">02 /</span><h2>Other Projects</h2><span class="sub">academic_work.log</span></div>
- <div class="projects-list">
-
- <div class="project-item reveal">
- <span class="project-num">01</span>
- <div class="project-body">
- <div class="project-category">Fixed Income &middot; Credit Analysis</div>
- <div class="project-title">Boeing Credit &amp; Financial Statement Analysis</div>
- <p class="project-desc">Analyzed Boeing's debt maturity schedule, leverage ratios, and interest coverage using Bloomberg, quantifying the credit risk premium embedded in bond yields relative to Treasuries. Synthesized findings into a forward-looking narrative on Boeing's capital structure and refinancing risk.</p>
- <div class="project-tags">
- <span class="project-tag">Bloomberg</span>
- <span class="project-tag">Credit Analysis</span>
- <span class="project-tag">Fixed Income</span>
- </div>
- </div>
- <div class="project-meta">
- <span class="project-date">Fall 2025</span>
- </div>
+ <div class="proj-list">
+ <div class="proj">
+ <div class="idx">01</div>
+ <div>
+ <h4>Boeing Credit &amp; Financial Statement Analysis</h4>
+ <div class="cat">FIXED INCOME · CREDIT · FALL 2025</div>
+ <p>Analyzed Boeing's debt maturity schedule, leverage ratios, and interest coverage using Bloomberg, quantifying the credit risk premium embedded in bond yields relative to Treasuries. Forward-looking narrative on capital structure and refinancing risk.</p>
</div>
-
- <div class="project-item reveal">
- <span class="project-num">02</span>
- <div class="project-body">
- <div class="project-category">Machine Learning &middot; Time Series</div>
- <div class="project-title">WMT Stock Price Prediction with LSTM</div>
- <p class="project-desc">Built a Long Short-Term Memory (LSTM) neural network in Python to forecast Walmart (WMT) stock prices using historical market data. Evaluated model performance using RMSE and visualized predicted vs. actual prices to assess accuracy and trend-following behavior.</p>
- <div class="project-tags">
- <span class="project-tag">Python</span>
- <span class="project-tag">LSTM</span>
- <span class="project-tag">Time Series</span>
- </div>
- </div>
- <div class="project-meta">
- <span class="project-date">Spring 2026</span>
- <a href="https://git.tylerhoang.xyz/wmt-stock-prediction.git" class="project-link" target="_blank">View Code</a>
- </div>
+ <div class="tags"><span class="tag">BLOOMBERG</span><span class="tag">CREDIT</span></div>
+ </div>
+ <div class="proj">
+ <div class="idx">02</div>
+ <div>
+ <h4>WMT Stock Price Prediction with LSTM</h4>
+ <div class="cat">MACHINE LEARNING · TIME SERIES · SPRING 2026</div>
+ <p>Built a Long Short-Term Memory (LSTM) neural network in Python to forecast Walmart (WMT) stock prices using historical market data. Evaluated with RMSE; visualized predicted vs. actual to assess accuracy and trend-following behavior.</p>
</div>
-
- <div class="project-item reveal">
- <span class="project-num">03</span>
- <div class="project-body">
- <div class="project-category">Derivatives &middot; Stochastic Calculus</div>
- <div class="project-title">Monte Carlo Simulation &mdash; Derivatives Pricing</div>
- <p class="project-desc">Modeled asset price dynamics using Geometric Brownian Motion (GBM) to simulate thousands of price paths and estimate option payoffs in Python. Applied stochastic calculus concepts to validate outcomes under risk-neutral pricing.</p>
- <div class="project-tags">
- <span class="project-tag">Monte Carlo</span>
- <span class="project-tag">GBM</span>
- <span class="project-tag">Options Pricing</span>
- </div>
- </div>
- <div class="project-meta">
- <span class="project-date">Spring 2026</span>
- </div>
+ <div class="tags"><span class="tag">PYTHON</span><span class="tag">LSTM</span></div>
+ </div>
+ <div class="proj">
+ <div class="idx">03</div>
+ <div>
+ <h4>Monte Carlo Simulation — Derivatives Pricing</h4>
+ <div class="cat">DERIVATIVES · STOCHASTIC CALCULUS · SPRING 2026</div>
+ <p>Modeled asset price dynamics using Geometric Brownian Motion (GBM) to simulate thousands of price paths and estimate option payoffs. Validated outcomes under risk-neutral pricing.</p>
</div>
-
- <div class="project-item reveal">
- <span class="project-num">04</span>
- <div class="project-body">
- <div class="project-category">Valuation &middot; Financial Modeling</div>
- <div class="project-title">Quantitative Company Analysis</div>
- <p class="project-desc">Developed advanced spreadsheet models for financial statement analysis, ratio benchmarking, and cash flow forecasting. Produced DCF valuation scenarios under base, optimistic, and downside cases.</p>
- <div class="project-tags">
- <span class="project-tag">DCF</span>
- <span class="project-tag">Forecasting</span>
- <span class="project-tag">Excel Modeling</span>
- </div>
- </div>
- <div class="project-meta">
- <span class="project-date">Fall 2025</span>
- </div>
+ <div class="tags"><span class="tag">MONTE CARLO</span><span class="tag">GBM</span></div>
+ </div>
+ <div class="proj">
+ <div class="idx">04</div>
+ <div>
+ <h4>Quantitative Company Analysis</h4>
+ <div class="cat">VALUATION · FINANCIAL MODELING · FALL 2025</div>
+ <p>Developed advanced spreadsheet models for financial statement analysis, ratio benchmarking, and cash flow forecasting. Produced DCF valuation scenarios under base, optimistic, and downside cases.</p>
</div>
-
+ <div class="tags"><span class="tag">DCF</span><span class="tag">EXCEL</span></div>
</div>
</div>
</section>
- <section id="skills">
- <div class="section-shell">
- <p class="section-label reveal">Technical &amp; Domain</p>
- <h2 class="section-title reveal">Skills</h2>
- <div class="section-rule reveal"></div>
- <div class="skills-grid reveal">
- <div class="skill-group">
- <div class="skill-group-title">Programming &amp; Tools</div>
- <ul class="skill-list">
- <li>Python</li>
- <li>pandas</li>
- <li>NumPy</li>
- <li>scikit-learn</li>
- <li>TensorFlow / Keras</li>
- <li>statsmodels</li>
- <li>Jupyter</li>
- <li>Linux</li>
- <li>Git</li>
- </ul>
- </div>
- <div class="skill-group">
- <div class="skill-group-title">Finance &amp; Analysis</div>
- <ul class="skill-list">
- <li>Advanced Excel</li>
- <li>Bloomberg Terminal</li>
- <li>DCF Valuation</li>
- <li>Comparable Companies</li>
- <li>Fixed Income</li>
- <li>Derivatives</li>
- <li>Financial Statement Analysis</li>
- <li>Credit Analysis</li>
- </ul>
- </div>
- <div class="skill-group">
- <div class="skill-group-title">Quantitative Methods</div>
- <ul class="skill-list">
- <li>OLS Regression</li>
- <li>Factor Models</li>
- <li>LSTM / GRU</li>
- <li>Monte Carlo Simulation</li>
- <li>Stochastic Calculus</li>
- <li>Time Series</li>
- <li>CAPM / Beta Estimation</li>
- </ul>
- </div>
- <div class="skill-group">
- <div class="skill-group-title">Certifications &amp; Languages</div>
- <ul class="skill-list">
- <li>CFA® Level I Candidate</li>
- <li>FINRA SIE</li>
- <li>English (Native)</li>
- <li>Vietnamese (Fluent)</li>
- </ul>
- </div>
+ <!-- SKILLS -->
+ <section class="panel" id="skills">
+ <div class="sec-head"><span class="num">03 /</span><h2>Skills</h2><span class="sub">stack.json</span></div>
+
+ <div class="skills-grid">
+ <div class="sk">
+ <h4>// programming &amp; tools</h4>
+ <ul>
+ <li>python <span class="dot-c">●●●●●</span></li>
+ <li>pandas / numpy <span class="dot-c">●●●●●</span></li>
+ <li>scikit-learn <span class="dot-c">●●●●○</span></li>
+ <li>tensorflow / keras <span class="dot-c">●●●○○</span></li>
+ <li>statsmodels <span class="dot-c">●●●○○</span></li>
+ <li>jupyter · linux · git <span class="dot-c">●●●●○</span></li>
+ </ul>
+ </div>
+ <div class="sk">
+ <h4>// finance &amp; analysis</h4>
+ <ul>
+ <li>advanced excel <span class="dot-c">●●●●●</span></li>
+ <li>bloomberg terminal <span class="dot-c">●●●●●</span></li>
+ <li>dcf / comps <span class="dot-c">●●●●●</span></li>
+ <li>fixed income <span class="dot-c">●●●●○</span></li>
+ <li>derivatives <span class="dot-c">●●●○○</span></li>
+ <li>credit analysis <span class="dot-c">●●●●○</span></li>
+ </ul>
+ </div>
+ <div class="sk">
+ <h4>// quantitative methods</h4>
+ <ul>
+ <li>ols regression <span class="dot-c">●●●●●</span></li>
+ <li>factor models <span class="dot-c">●●●○○</span></li>
+ <li>lstm / gru <span class="dot-c">●●●○○</span></li>
+ <li>monte carlo <span class="dot-c">●●●●○</span></li>
+ <li>stochastic calculus <span class="dot-c">●●●○○</span></li>
+ <li>capm / beta <span class="dot-c">●●●●○</span></li>
+ </ul>
</div>
</div>
</section>
- <section id="resume">
- <div class="section-shell">
- <div class="resume-inner">
- <p class="section-label reveal">Experience &amp; Credentials</p>
- <h2 class="section-title reveal">Resume</h2>
- <div class="section-rule reveal"></div>
- <p class="resume-desc reveal">Academic background, professional experience, and technical skills across finance, analytics, valuation, and investor-focused product work.</p>
- <ul class="resume-list reveal">
- <li>M.S. Financial Analytics &mdash; CSULB (Expected Aug 2026)</li>
- <li>B.A. Business Administration / Finance &mdash; CSUF</li>
- <li>Associate Banker, JPMorgan Chase</li>
- <li>CFA® Level I Candidate &mdash; Aug 2026</li>
- <li>FINRA SIE Certified</li>
- <li>Python, Advanced Excel, Bloomberg Terminal</li>
- </ul>
- <div class="resume-ornament reveal">
- <div class="resume-ornament-line"></div>
- <span class="resume-ornament-dot">&middot;</span>
- <div class="resume-ornament-line"></div>
- </div>
- <div class="resume-downloads reveal">
- <a href="Tyler_Resume.pdf" class="btn-primary">Download PDF</a>
- <a href="Tyler_Resume.docx" class="btn-outline">Download DOCX</a>
- </div>
+ <!-- RESUME -->
+ <section class="panel" id="resume">
+ <div class="sec-head"><span class="num">04 /</span><h2>Resume</h2><span class="sub">credentials.log</span></div>
+
+ <div class="resume-grid">
+ <div class="resume-cell">
+ <h4>M.S. Financial Analytics</h4>
+ <div class="where">CSULB · California State University, Long Beach</div>
+ <div class="when">Expected Aug 2026</div>
+ <p>Coursework in fixed income, derivatives pricing, machine learning, and valuation.</p>
+ </div>
+ <div class="resume-cell">
+ <h4>B.A. Business Administration / Finance</h4>
+ <div class="where">CSUF · California State University, Fullerton</div>
+ <div class="when">Completed</div>
+ <p>Concentration in finance with quantitative methods.</p>
+ </div>
+ <div class="resume-cell">
+ <h4>Associate Banker</h4>
+ <div class="where">JPMorgan Chase</div>
+ <div class="when">Current</div>
+ <p>Client-facing banking and branch operations: internal controls, cash management, operational compliance.</p>
</div>
+ <div class="resume-cell">
+ <h4>Certifications &amp; Tools</h4>
+ <div class="where">CFA® L1 Candidate · FINRA SIE</div>
+ <div class="when">Python · Advanced Excel · Bloomberg</div>
+ <p>Self-computed valuation, factor models, and quant research tooling.</p>
+ </div>
+ </div>
+ <div class="resume-actions">
+ <a class="btn primary" href="Tyler_Resume.pdf">Download PDF</a>
+ <a class="btn" href="Tyler_Resume.docx">Download DOCX</a>
</div>
</section>
- <section id="contact">
- <div class="section-shell">
- <p class="section-label reveal">Get in Touch</p>
- <h2 class="section-title reveal">Contact</h2>
- <div class="section-rule reveal"></div>
- <div class="contact-grid">
- <div>
- <p class="contact-text reveal">I'm actively pursuing opportunities in asset management, investment research, and quantitative finance. If you're looking for someone who combines market judgment, analytical rigor, and strong execution, let's talk.</p>
- <div class="contact-links reveal">
- <a href="mailto:tyler@tylerhoang.xyz" class="contact-link">
- <div class="contact-link-icon">
- <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
- <rect x="2" y="4" width="20" height="16" rx="2"></rect><path d="M2 7l10 7 10-7"></path>
- </svg>
- </div>
- tyler@tylerhoang.xyz
- </a>
- <a href="https://www.linkedin.com/in/thuyghoang" target="_blank" class="contact-link">
- <div class="contact-link-icon">
- <svg viewBox="0 0 24 24" fill="currentColor">
- <path d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path><circle cx="4" cy="4" r="2"></circle>
- </svg>
- </div>
- linkedin.com/in/thuyghoang
- </a>
- <a href="https://git.tylerhoang.xyz" target="_blank" class="contact-link">
- <div class="contact-link-icon">
- <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
- <circle cx="12" cy="12" r="10"></circle><path d="M12 2a10 10 0 000 20c1.5 0 2-.5 2-2v-1.5c0-.5-.3-1-.8-1.2C10.5 16.8 9 15 9 12c0-3 2-5 5-5h.5"></path>
- </svg>
- </div>
- git.tylerhoang.xyz
- </a>
- </div>
- </div>
- <div class="contact-form reveal">
- <div class="form-group">
- <label class="form-label">Name</label>
- <input id="cf-name" type="text" class="form-input" placeholder="Your name" />
- </div>
- <div class="form-group">
- <label class="form-label">Email</label>
- <input id="cf-email" type="email" class="form-input" placeholder="your@email.com" />
- </div>
- <div class="form-group">
- <label class="form-label">Message</label>
- <textarea id="cf-message" class="form-textarea" placeholder="What's on your mind?"></textarea>
- </div>
- <p id="cf-status" style="font-size:0.82rem; min-height:1.2em; color: var(--accent); font-family: var(--ui-font);"></p>
- <a href="#" class="btn-primary form-submit" id="cf-btn" onclick="handleFormSubmit(event)">Send Message</a>
+ <!-- CONTACT -->
+ <section class="panel contact" id="contact">
+ <div class="sec-head"><span class="num">05 /</span><h2>Contact</h2><span class="sub">send_signal.sh</span></div>
+
+ <div class="contact-grid">
+ <div>
+ <p>Actively pursuing opportunities in asset management, investment research, and quantitative finance. If you're looking for someone who combines market judgment, analytical rigor, and strong execution, let's talk.</p>
+ <div class="links">
+ <a href="mailto:tyler@tylerhoang.xyz">→ tyler@tylerhoang.xyz</a>
+ <a href="https://linkedin.com/in/thuyghoang" target="_blank" rel="noopener">→ linkedin.com/in/thuyghoang</a>
+ <a href="https://git.tylerhoang.xyz" target="_blank" rel="noopener">→ git.tylerhoang.xyz</a>
</div>
</div>
+ <form id="contact-form" novalidate>
+ <input id="cf-name" name="name" type="text" placeholder="name" autocomplete="name" required />
+ <input id="cf-email" name="email" type="email" placeholder="email" autocomplete="email" required />
+ <textarea id="cf-message" name="message" placeholder="message" required></textarea>
+ <div class="form-foot">
+ <button id="cf-submit" class="btn primary" type="submit">→ SEND MESSAGE</button>
+ <span id="cf-status" class="status" role="status" aria-live="polite"></span>
+ </div>
+ </form>
</div>
</section>
+</div>
- <footer>
- <span class="footer-name">Thuy (Tyler) Hoang</span>
- <span class="footer-copy">&copy; 2026 &middot; tylerhoang.xyz</span>
- </footer>
-
- <div class="lightbox" id="lightbox" aria-hidden="true">
- <button class="lightbox-close" id="lightbox-close" aria-label="Close image viewer">&#x2715;</button>
- <img id="lightbox-image" src="" alt="Expanded project screenshot" />
+<footer>
+ <div class="wrap">
+ <span>© 2026 · tylerhoang.xyz</span>
+ <span>END_OF_DOCUMENT · 0x00</span>
</div>
+</footer>
- <script>
- const reveals = document.querySelectorAll('.reveal');
- const observer = new IntersectionObserver((entries) => {
- entries.forEach((entry, i) => {
- if (entry.isIntersecting) {
- setTimeout(() => entry.target.classList.add('visible'), i * 55);
- observer.unobserve(entry.target);
- }
- });
- }, { threshold: 0.08 });
- reveals.forEach((el) => observer.observe(el));
-
- const lightbox = document.getElementById('lightbox');
- const lightboxImage = document.getElementById('lightbox-image');
- const lightboxClose = document.getElementById('lightbox-close');
- const galleryImages = document.querySelectorAll('[data-lightbox="prism"]');
-
- function openLightbox(src, alt) {
- lightboxImage.src = src;
- lightboxImage.alt = alt || 'Expanded project screenshot';
- lightbox.classList.add('active');
- lightbox.setAttribute('aria-hidden', 'false');
- document.body.style.overflow = 'hidden';
- }
-
- function closeLightbox() {
- lightbox.classList.remove('active');
- lightbox.setAttribute('aria-hidden', 'true');
- lightboxImage.src = '';
- document.body.style.overflow = '';
- }
-
- galleryImages.forEach((img) => {
- img.addEventListener('click', () => openLightbox(img.src, img.alt));
- });
-
- lightboxClose.addEventListener('click', closeLightbox);
- lightbox.addEventListener('click', (e) => {
- if (e.target === lightbox) closeLightbox();
- });
- document.addEventListener('keydown', (e) => {
- if (e.key === 'Escape' && lightbox.classList.contains('active')) closeLightbox();
- });
+<script>
+ // Contact form: posts to the same /api/contact endpoint the previous site used.
+ (function () {
+ const form = document.getElementById('contact-form');
+ if (!form) return;
+ const btn = document.getElementById('cf-submit');
+ const status = document.getElementById('cf-status');
- async function handleFormSubmit(e) {
+ form.addEventListener('submit', async function (e) {
e.preventDefault();
- const btn = document.getElementById('cf-btn');
- const status = document.getElementById('cf-status');
const name = document.getElementById('cf-name').value.trim();
const email = document.getElementById('cf-email').value.trim();
const message = document.getElementById('cf-message').value.trim();
if (!name || !email || !message) {
- status.style.color = '#c47a6a';
+ status.className = 'status err';
status.textContent = 'Please fill in all fields.';
return;
}
@@ -1625,6 +499,7 @@
btn.textContent = 'Sending…';
btn.style.opacity = '0.6';
btn.style.pointerEvents = 'none';
+ status.className = 'status';
status.textContent = '';
try {
@@ -1633,27 +508,26 @@
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ name, email, message })
});
- const data = await res.json();
+ const data = await res.json().catch(() => ({}));
if (res.ok) {
- status.style.color = 'var(--accent)';
- status.textContent = "Message sent — I’ll be in touch soon.";
- document.getElementById('cf-name').value = '';
- document.getElementById('cf-email').value = '';
- document.getElementById('cf-message').value = '';
+ status.className = 'status ok';
+ status.textContent = "Message sent — I'll be in touch soon.";
+ form.reset();
} else {
- status.style.color = '#c47a6a';
+ status.className = 'status err';
status.textContent = data.error || 'Something went wrong. Please try again.';
}
} catch (err) {
- status.style.color = '#c47a6a';
+ status.className = 'status err';
status.textContent = 'Could not reach the server. Please try again later.';
} finally {
- btn.textContent = 'Send Message';
+ btn.textContent = '→ SEND MESSAGE';
btn.style.opacity = '';
btn.style.pointerEvents = '';
}
- }
- </script>
+ });
+ })();
+</script>
</body>
</html>