Skip to content

Commit

Permalink
Temp top page has been added
Browse files Browse the repository at this point in the history
  • Loading branch information
keiono committed Nov 26, 2024
1 parent ffd81c2 commit 6548ea0
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Example Apps for the Cytoscape Web</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1,
h2,
h3 {
color: #333;
}
pre {
background: #f4f4f4;
padding: 10px;
border: 1px solid #ddd;
overflow-x: auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Example Apps for the Cytoscape Web</h1>

<h2>Introduction</h2>
<p>
Cytoscape Web has a built-in <em>App</em> hosting mechanism. This
repository is the reference implementations for using basic functions in
the Apps.
</p>
<p>(TBD)</p>

<h2>Quick Start</h2>
<p>To run all of the apps locally, type:</p>
<pre><code>npm run dev</code></pre>

<h2>Example Apps</h2>
<h3>hello-world</h3>

<h2>Developer's Guide</h2>
<h3>How to build and deploy</h3>

<h2>Create a new App</h2>
</div>
</body>
</html>

0 comments on commit 6548ea0

Please sign in to comment.