Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Stub out lookslike prototype
  • Loading branch information
gordonbrander committed May 30, 2024
commit ef97ffb6a33f09f0510fe56e66cd07827c6f738f
9 changes: 9 additions & 0 deletions sketches/2024-05-30-lookslike-prototype/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Getting started

Quick start:

```bash
npm install && npm run build && npm run preview
```

This will install dependencies, build the project, and spin up a preview in a dev server using Vite.
43 changes: 43 additions & 0 deletions sketches/2024-05-30-lookslike-prototype/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title></title>
<link rel="stylesheet" href="src/main.css">
<script type="module" src="src/main.ts"></script>
</head>
<body class="theme">
<com-app-grid>
<com-chat slot="main">
<com-thread slot="main">
<com-thread-group>
<com-prompt slot="prompt">
<com-editor value="Henlo world"></com-editor>
</com-prompt>
<com-response slot="response">
<com-editor value="Hello world"></com-editor>
</com-response>
</com-thread-group>
<com-thread-group>
<com-prompt slot="prompt">
<com-editor value="Henlo world"></com-editor>
</com-prompt>
<com-response slot="response">
<com-editor value="Hello world"></com-editor>
</com-response>
</com-thread-group>
</com-thread>
<div slot="footer">
<com-unibox>
<com-editor slot="main"></com-editor>
<com-button slot="end">Send</com-button>
</com-unibox>
</div>
</com-chat>
<div slot="sidebar">

</div>
</com-app-grid>
</body>
</html>
Loading