Skip to content

Commit 31decb1

Browse files
committed
feat: art page
1 parent ba4b2eb commit 31decb1

Some content is hidden

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

56 files changed

+819
-67
lines changed

β€Ž.hintrcβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": [
3+
"development"
4+
],
5+
"hints": {
6+
"axe/text-alternatives": "off"
7+
}
8+
}

β€Žpackage.jsonβ€Ž

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@
1111
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
1212
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
1313
"lint": "prettier --plugin-search-dir . --check . && eslint .",
14-
"format": "prettier --plugin-search-dir . --write ."
14+
"format": "prettier --plugin-search-dir . --write .",
15+
"tunnel": "cloudflared tunnel run --url http://localhost:5173"
1516
},
1617
"devDependencies": {
1718
"@playwright/test": "^1.25.0",
1819
"@sveltejs/adapter-vercel": "^1.0.0-next.81",
1920
"@sveltejs/kit": "next",
2021
"@tailwindcss/line-clamp": "^0.4.2",
2122
"@tailwindcss/typography": "^0.5.7",
23+
"@types/nprogress": "^0.2.0",
2224
"@typescript-eslint/eslint-plugin": "^5.27.0",
2325
"@typescript-eslint/parser": "^5.27.0",
2426
"autoprefixer": "^10.4.7",
@@ -40,6 +42,8 @@
4042
},
4143
"type": "module",
4244
"dependencies": {
43-
"@notionhq/client": "^2.2.2"
45+
"@notionhq/client": "^2.2.2",
46+
"clsx": "^1.2.1",
47+
"nprogress": "^0.2.0"
4448
}
4549
}

β€Žsrc/app.htmlβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<meta charset="utf-8" />
55
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
66
<meta name="viewport" content="width=device-width" />
7-
<title>koding.dev | Home</title>
87
%sveltekit.head%
98
</head>
109
<body>

β€Žsrc/app.postcssβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,25 @@ body {
88
@apply bg-white text-black dark:bg-neutral-900 dark:text-white transition-all;
99
}
1010

11-
/* Typography */
1211
@layer utilities {
12+
/* Typography */
1313
.text-title {
1414
@apply text-2xl font-bold dark:text-neutral-300;
1515
}
1616

1717
.text-subtitle {
1818
@apply text-lg text-neutral-600 dark:text-neutral-400;
1919
}
20+
21+
/* Basic Cards */
22+
.basic-card {
23+
@apply p-4 border-[1px] rounded-md border-neutral-300 dark:border-neutral-700 bg-neutral-100 dark:bg-neutral-800 bg-opacity-70 dark:bg-opacity-70;
24+
}
25+
26+
/* Links */
27+
.link {
28+
@apply text-neutral-400 hover:text-neutral-200 transition-all;
29+
}
2030
}
2131

2232
/* Icon sizing */
9.44 KB
Loading
73 KB
Loading
6.98 MB
Loading
7.65 MB
Loading
596 KB
Loading
772 KB
Loading

0 commit comments

Comments
Β (0)