diff --git a/bun.lockb b/bun.lockb index 0c32922..9fec297 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index f12ece8..1684a89 100644 --- a/package.json +++ b/package.json @@ -10,12 +10,12 @@ "tauri": "tauri" }, "dependencies": { - "@tauri-apps/api": "^2.0.0-rc.0", - "@tauri-apps/plugin-shell": "~2.0.0-rc", + "@tauri-apps/api": "^2.0.1", + "@tauri-apps/plugin-shell": "~2.0.0", "kaioken": "^0.31.0" }, "devDependencies": { - "@tauri-apps/cli": "^2.0.0-rc.18", + "@tauri-apps/cli": "^2.0.1", "autoprefixer": "^10.4.20", "postcss": "^8.4.47", "tailwindcss": "^3.4.13", diff --git a/src/App.tsx b/src/App.tsx index 6a916bc..9778f5a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,5 @@ import { useRef, useState } from "kaioken" +import { Logo } from "./components/Logo" export function App() { const [text, setText] = useState('') @@ -10,12 +11,16 @@ export function App() { } return ( -
-

{text}

-
-
- Text here -
+ <> + + +
+

{text}

+
+
+ Text here +
+ ) } diff --git a/src/assets/fonts/Virgil.woff2 b/src/assets/fonts/Virgil.woff2 new file mode 100644 index 0000000..cb22225 Binary files /dev/null and b/src/assets/fonts/Virgil.woff2 differ diff --git a/src/assets/logo.svg b/src/assets/logo.svg new file mode 100644 index 0000000..fab141b --- /dev/null +++ b/src/assets/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx new file mode 100644 index 0000000..897397e --- /dev/null +++ b/src/components/Logo.tsx @@ -0,0 +1,9 @@ +import LogoSvg from '../assets/logo.svg' +export function Logo() { + return ( + <> + +

template

+ + ) +} diff --git a/src/styles.css b/src/styles.css index 3852a4b..561b8ff 100644 --- a/src/styles.css +++ b/src/styles.css @@ -2,6 +2,11 @@ @tailwind components; @tailwind utilities; +@font-face { + font-family: "Virgil"; + src: url("./assets/fonts/Virgil.woff2") format("woff2"); +} + :root { font-family: Inter, Avenir, Helvetica, Arial, sans-serif; color: #fff;