Skip to content

Commit 5db0fe5

Browse files
authored
feat: Layout (#64)
2 parents 332478c + 0133027 commit 5db0fe5

File tree

169 files changed

+6029
-1528
lines changed

Some content is hidden

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

169 files changed

+6029
-1528
lines changed

.eslintrc.json

Lines changed: 0 additions & 154 deletions
This file was deleted.

.github/workflows/housekeeping.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ jobs:
1515
- name: Install deps
1616
run: yarn
1717

18-
- name: "Formatting: Prettier"
19-
id: prettier
20-
run: yarn prettier --check .
18+
- name: "Biome: Format"
19+
id: formatter
20+
run: yarn format
2121
continue-on-error: true
2222

23-
- name: "Formatting: ESLint"
24-
id: eslint
25-
run: yarn eslint .
23+
- name: "Biome: Lint"
24+
id: linter
25+
run: yarn lint
2626
continue-on-error: true
2727

2828
- name: "Check outcomes"
2929
if: always()
3030
run: |
31-
if [[ "${{ steps.prettier.outcome }}" != "success" || "${{ steps.eslint.outcome }}" != "success" ]]; then
31+
if [[ "${{ steps.formatter.outcome }}" != "success" || "${{ steps.linter.outcome }}" != "success" ]]; then
3232
echo "Formatting checks failed; make sure to format and lint your code accordingly!"
3333
exit 1
3434
fi
@@ -46,5 +46,5 @@ jobs:
4646
- name: Install deps
4747
run: yarn
4848

49-
- name: "Dependencies: Knip"
49+
- name: "Knip checks"
5050
run: yarn knip

.prettierignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

.prettierrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

apps/desktop/src/components/TitleBar.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ export function TitleBar() {
3636
}, [])
3737

3838
return (
39-
<div data-tauri-drag-region="" className="flex items-center justify-between">
39+
<div
40+
data-tauri-drag-region=""
41+
className="flex items-center justify-between"
42+
>
4043
<div className="flex items-center gap-x-3 px-5 py-3">
4144
<div data-tauri-drag-region="">
4245
{/* <MyArtverseIcon logoOnly size={0.6} /> */}

apps/desktop/vite.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export default defineConfig(async () => ({
2424
},
2525
build: {
2626
// Tauri uses Chromium on Windows and WebKit on macOS and Linux
27-
target: process.env.TAURI_PLATFORM == "windows" ? "chrome105" : "safari13",
27+
target:
28+
process.env.TAURI_PLATFORM == "windows" ? "chrome105" : "safari13",
2829
// don't minify for debug builds
2930
minify: !process.env.TAURI_DEBUG ? "esbuild" : false,
3031
// produce sourcemaps for debug builds

apps/web/lib/redirects.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable import/no-anonymous-default-export */
12
export default [
23
{ source: "/signup", destination: "/register", permanent: true },
34
{ source: "/sign-up", destination: "/register", permanent: true },

apps/web/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212
"dependencies": {
1313
"@headlessui/react": "^2.0.3",
1414
"@mdx-js/loader": "^3.0.1",
15-
"@next/mdx": "15.2.1",
15+
"@next/mdx": "15.2.3",
1616
"autoprefixer": "^10.4.19",
1717
"class-variance-authority": "^0.7.0",
18-
"dompurify": "^3.1.4",
18+
"isomorphic-dompurify": "2.22.0",
1919
"framer-motion": "^11.2.4",
2020
"gsap": "^3.12.5",
21-
"isomorphic-dompurify": "^2.10.0",
2221
"jotai": "^2.8.0",
2322
"lodash": "^4.17.21",
24-
"next": "15.2.1",
23+
"next": "15.2.3",
2524
"next-pwa": "^5.6.0",
2625
"react": "19.0.0",
2726
"react-dom": "19.0.0",

apps/web/public/modals/panels/comments.svg

Lines changed: 58 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)