Skip to content

Commit 70eb072

Browse files
committed
fast furious
1 parent 94c1ca7 commit 70eb072

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const viewport: Viewport = {
7979

8080
const fontSans = localFont({
8181
src: [{ path: './fonts/Inter.woff2' }],
82-
variable: '--font-sans',
82+
variable: '--font-sans'
8383
})
8484

8585
const fontMono = localFont({

components/table-of-contents.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ function TocLink({ item, activeId }: { item: TableOfContentsProps; activeId: str
7777
<Link
7878
className={cn(
7979
'outline-none block no-underline tracking-tight lg:text-[0.885rem] duration-200',
80-
item.url.split('#')[1] === activeId ? 'dark:text-primary-400 text-primary-600' : 'text-muted-fg hover:text-primary-600 dark:hover:text-primary-400',
80+
item.url.split('#')[1] === activeId
81+
? 'dark:text-primary-400 text-primary-600'
82+
: 'text-muted-fg hover:text-primary-600 dark:hover:text-primary-400'
8183
)}
8284
href={item.url}
8385
>

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"color-namer": "^1.4.0",
2424
"embla-carousel-autoplay": "^8.1.8",
2525
"embla-carousel-react": "^8.1.8",
26-
"framer-motion": "^11.3.24",
26+
"framer-motion": "^11.3.28",
2727
"input-otp": "^1.2.4",
2828
"justd-icons": "^1.4.30",
2929
"next": "^14.2.5",
@@ -38,18 +38,18 @@
3838
"react-use-measure": "^2.1.1",
3939
"rehype-pretty-code": "^0.13.2",
4040
"rehype-stringify": "^10.0.0",
41-
"shiki": "^1.12.1",
41+
"shiki": "^1.13.0",
4242
"sonner": "^1.5.0",
43-
"tailwind-merge": "^2.4.0",
43+
"tailwind-merge": "^2.5.2",
4444
"tailwind-variants": "^0.2.1",
4545
"tailwindcss-animate": "^1.0.7",
4646
"tailwindcss-react-aria-components": "^1.1.4",
4747
"title": "^3.5.3",
4848
"use-debounce": "^10.0.2",
49-
"usemods": "^1.6.1"
49+
"usemods": "^1.7.1"
5050
},
5151
"devDependencies": {
52-
"@shikijs/rehype": "^1.12.1",
52+
"@shikijs/rehype": "^1.13.0",
5353
"@tailwindcss/typography": "^0.5.14",
5454
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
5555
"@types/chroma-js": "^2.4.4",
@@ -71,7 +71,7 @@
7171
"prettier-plugin-tailwindcss": "^0.6.6",
7272
"rehype-autolink-headings": "^7.1.0",
7373
"rehype-slug": "^6.0.0",
74-
"tailwindcss": "^3.4.9",
74+
"tailwindcss": "^3.4.10",
7575
"typescript": "^5.5.4",
7676
"velite": "0.1.0-beta.11"
7777
},

0 commit comments

Comments
 (0)