Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24.x
cache: 'yarn'

- uses: calcit-lang/[email protected]
Expand Down
21 changes: 20 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,29 @@

<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>Respo: A virtual DOM library in Calcit-js</title>
<meta name="description" content="Respo is a virtual DOM library in Calcit-js, inspired by React and Reagent.">
<meta name="keywords" content="Respo, Calcit-js, virtual DOM, React, Reagent">
<meta name="author" content="Your Name or Company Name">
Comment thread
tiye marked this conversation as resolved.
Outdated

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="YOUR_WEBSITE_URL">
<meta property="og:title" content="Respo: A virtual DOM library in Calcit-js">
<meta property="og:description" content="Respo is a virtual DOM library in Calcit-js, inspired by React and Reagent.">
<meta property="og:image" content="YOUR_OG_IMAGE_URL">
Comment thread
tiye marked this conversation as resolved.
Outdated

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="YOUR_WEBSITE_URL">
Comment thread
tiye marked this conversation as resolved.
Outdated
Comment thread
tiye marked this conversation as resolved.
Outdated
<meta property="twitter:title" content="Respo: A virtual DOM library in Calcit-js">
<meta property="twitter:description" content="Respo is a virtual DOM library in Calcit-js, inspired by React and Reagent.">
<meta property="twitter:image" content="YOUR_TWITTER_IMAGE_URL">
Comment thread
tiye marked this conversation as resolved.
Outdated

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<link rel="icon" type="image/x-icon" href="https://cdn.tiye.me/logo/respo.png">
<link rel="stylesheet" type="text/css" href="https://cdn.tiye.me/favored-fonts/main-fonts.css">
<link rel="stylesheet" type="text/css" href="./assets/main.css">
</head>
Expand Down