Skip to content

Commit be95872

Browse files
committed
Initial commit
0 parents  commit be95872

78 files changed

Lines changed: 7768 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
3+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# supernote
2+

index.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="stylesheet" href="/src/styles.css" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Tauri App</title>
8+
<script type="module" src="/src/main.ts" defer></script>
9+
</head>
10+
11+
<body>
12+
<main class="container">
13+
<h1>Welcome to Tauri</h1>
14+
15+
<div class="row">
16+
<a href="https://vite.dev" target="_blank">
17+
<img src="/src/assets/vite.svg" class="logo vite" alt="Vite logo" />
18+
</a>
19+
<a href="https://tauri.app" target="_blank">
20+
<img
21+
src="/src/assets/tauri.svg"
22+
class="logo tauri"
23+
alt="Tauri logo"
24+
/>
25+
</a>
26+
<a href="https://www.typescriptlang.org/docs" target="_blank">
27+
<img
28+
src="/src/assets/typescript.svg"
29+
class="logo typescript"
30+
alt="typescript logo"
31+
/>
32+
</a>
33+
</div>
34+
<p>Click on the Tauri logo to learn more about the framework</p>
35+
36+
<form class="row" id="greet-form">
37+
<input id="greet-input" placeholder="Enter a name..." />
38+
<button type="submit">Greet</button>
39+
</form>
40+
<p id="greet-msg"></p>
41+
</main>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)