diff --git a/package-lock.json b/package-lock.json index acc5fd6..cb33004 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,8 @@ "dependencies": { "@fontsource/fira-mono": "^4.5.0", "@lukeed/uuid": "^2.0.0", - "cookie": "^0.4.1" + "cookie": "^0.4.1", + "vanilla-tilt": "^1.7.2" }, "devDependencies": { "@sveltejs/adapter-auto": "^1.0.0-next.18", @@ -3160,6 +3161,11 @@ "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, + "node_modules/vanilla-tilt": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/vanilla-tilt/-/vanilla-tilt-1.7.2.tgz", + "integrity": "sha512-arf2wY2Y65rP6Zxve9PnUUnRl9nQ1KenPNae6QRaVq/PEvaIto2bC4jYirNJ19U7nLkzI1H9O+nYtcQlX7BTsA==" + }, "node_modules/vite": { "version": "2.7.13", "resolved": "https://registry.npmjs.org/vite/-/vite-2.7.13.tgz", @@ -5446,6 +5452,11 @@ "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, + "vanilla-tilt": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/vanilla-tilt/-/vanilla-tilt-1.7.2.tgz", + "integrity": "sha512-arf2wY2Y65rP6Zxve9PnUUnRl9nQ1KenPNae6QRaVq/PEvaIto2bC4jYirNJ19U7nLkzI1H9O+nYtcQlX7BTsA==" + }, "vite": { "version": "2.7.13", "resolved": "https://registry.npmjs.org/vite/-/vite-2.7.13.tgz", diff --git a/package.json b/package.json index 71fc949..e4bf86e 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,8 @@ "dependencies": { "@fontsource/fira-mono": "^4.5.0", "@lukeed/uuid": "^2.0.0", - "cookie": "^0.4.1" + "cookie": "^0.4.1", + "vanilla-tilt": "^1.7.2" }, "type": "module" } diff --git a/src/app.css b/src/app.css index ed8c922..215fbaf 100644 --- a/src/app.css +++ b/src/app.css @@ -1,11 +1,20 @@ -@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,900;1,100;1,500&display=swap"); +@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,900;1,100;1,500&display=swap'); @tailwind base; @tailwind components; @tailwind utilities; +@font-face { + font-family: 'Baron'; + src: url('/fonts/BaronNeue-Black.otf'); +} + :root { - font-family: "Roboto", sans-serif; + font-family: 'Roboto', sans-serif; +} + +.baron { + font-family: 'Baron', sans-serif; } #svelte { diff --git a/src/app.html b/src/app.html index d8ed254..162a3a6 100644 --- a/src/app.html +++ b/src/app.html @@ -9,5 +9,6 @@