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 ( -
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;