41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Interactive Feature flow</title>
|
|
<meta
|
|
name="description"
|
|
content="Author: Julien Calixte,
|
|
My understanding of how a feature flow
|
|
can help team prioritize."
|
|
/>
|
|
<!-- CSS Reset -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
|
|
/>
|
|
|
|
<!-- Milligram CSS -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css"
|
|
/>
|
|
|
|
<link rel="stylesheet" href="core.css" />
|
|
<link rel="stylesheet" href="feature-flow.css" />
|
|
<link rel="icon" href="people-improvement.svg" />
|
|
<link rel="mask-icon" href="people-improvement.svg" color="#ffffff" />
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong
|
|
>We're sorry but this app doesn't work properly without JavaScript
|
|
enabled. Please enable it to continue.</strong
|
|
>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|