Skip to content

Commit 75d4f3f

Browse files
committed
refactor(multi): updated data path removed assets/data and it was updated to components/sections & add license as MIT in package.json
1 parent b00cf47 commit 75d4f3f

23 files changed

+121
-92
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
"name": "shadcn-astro-track-landing-page",
33
"type": "module",
44
"version": "1.0.0",
5+
"license": "MIT",
56
"scripts": {
67
"dev": "astro dev",
78
"build": "astro build",
89
"preview": "astro preview",
910
"astro": "astro",
1011
"lint": "eslint",
1112
"lint:fix": "eslint --fix",
12-
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,astro,css}\"",
13+
"format": "prettier --write .",
1314
"check-types": "tsc --noEmit",
1415
"clean": "rm -rf .astro",
15-
"format": "prettier --write .",
1616
"clean:node_modules": "rm -rf .astro node_modules"
1717
},
1818
"dependencies": {
@@ -47,7 +47,7 @@
4747
"eslint": "^9.39.2",
4848
"eslint-config-prettier": "^10.1.8",
4949
"eslint-plugin-astro": "^1.5.0",
50-
"eslint-plugin-react": "^7.35.0",
50+
"eslint-plugin-react": "^7.37.5",
5151
"eslint-plugin-react-hooks": "^7.0.1",
5252
"globals": "^16.5.0",
5353
"prettier": "3.7.4",

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/android-chrome-192x192.png

-21.2 KB
Binary file not shown.

public/android-chrome-512x512.png

-96.1 KB
Binary file not shown.

src/components/blocks/changelog-section/v1_1_0.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import TimelineItem from '@/components/timeline/timeline-items'
22
import Accordion from '@/components/badge-accordion/badge-accordion'
3-
import { accordionDataV1_1_0 } from '@/assets/data/changelog-data'
3+
import { accordionDataV1_1_0 } from '@/components/sections/changelog-data'
44
import { Button } from '@/components/ui/button'
55

66
function v1_1_0() {
@@ -15,7 +15,7 @@ function v1_1_0() {
1515
semantic, and fully type-safe — built for scaling design systems.
1616
</p>
1717
</div>
18-
<img src='/src/assets/images/image-2.webp' alt='Design Tokens 2.0 Demo' loading='lazy' />
18+
<img src='/images/image-2.webp' alt='Design Tokens 2.0 Demo' loading='lazy' />
1919
<p className='text-muted-foreground'>
2020
Design Tokens 2.0 introduces a complete overhaul of how themes are managed within shadcnstudio. With this
2121
update, design tokens are now hierarchical and semantic, offering greater flexibility and scalability for

0 commit comments

Comments
 (0)