Skip to content

Commit 6ab4490

Browse files
committed
migrate
1 parent 317fb0d commit 6ab4490

File tree

19 files changed

+271
-323
lines changed

19 files changed

+271
-323
lines changed

CHANGELOG.md

Lines changed: 213 additions & 213 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### TL;DR
22

33
```bash
4-
laravel new app --using=justd/laravel
4+
laravel new app --using=intentui/laravel
55
```
66

77
Make sure to update your `APP_URL` in the `.env` file before using the route function. Then, run `bun run dev` to generate and watch routes properly during development.

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"$schema": "https://getcomposer.org/schema.json",
3-
"name": "justd/laravel",
3+
"name": "intentui/laravel",
44
"type": "project",
55
"description": "The skeleton application for the Laravel framework with Inertia.js and Justd.",
66
"keywords": [
77
"laravel",
88
"framework",
9-
"justd",
9+
"intentui",
1010
"inertia"
1111
],
1212
"license": "MIT",
@@ -16,8 +16,7 @@
1616
"laravel/framework": "^12.0",
1717
"laravel/sanctum": "^4.0",
1818
"laravel/tinker": "^2.10",
19-
"laravel/wayfinder": "^0.1.3",
20-
"tightenco/ziggy": "^2.0"
19+
"laravel/wayfinder": "^0.1.3"
2120
},
2221
"require-dev": {
2322
"fakerphp/faker": "^1.23",

justd.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://getjustd.com/schema.json",
2+
"$schema": "https://intentui.com/schema.json",
33
"ui": "resources/js/components/ui",
44
"utils": "resources/js/utils",
55
"gray": "zinc",

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
"vite-plugin-run": "^0.6.1"
2727
},
2828
"dependencies": {
29+
"@intentui/icons": "^1.10.29",
2930
"@tailwindcss/vite": "^4.1.3",
3031
"@types/node": "^22.14.0",
3132
"clsx": "^2.1.1",
32-
"justd-icons": "^1.10.26",
3333
"motion": "^12.6.3",
3434
"react": "^19.1.0",
3535
"react-aria-components": "^1.7.1",

resources/js/components/footer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const navigation = {
5656
},
5757
{
5858
name: "Twitter",
59-
href: "https://x.com/getjustd",
59+
href: "https://x.com/intentui",
6060
icon: (props: SVGProps<SVGSVGElement>) => (
6161
<svg fill="currentColor" viewBox="0 0 24 24" {...props}>
6262
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
@@ -65,7 +65,7 @@ const navigation = {
6565
},
6666
{
6767
name: "GitHub",
68-
href: "https://github.com/justdlabs",
68+
href: "https://github.com/intentuilabs",
6969
icon: (props: SVGProps<SVGSVGElement>) => (
7070
<svg fill="currentColor" viewBox="0 0 24 24" {...props}>
7171
<path
@@ -207,8 +207,8 @@ export function Footer() {
207207
</div>
208208
<p className="mt-8 text-muted-fg text-xs leading-5 md:order-1 md:mt-0">
209209
&copy; 2020 Inertia.ts by{" "}
210-
<Link target="_blank" href="https://x.com/getjustd" className="font-semibold text-fg">
211-
Justd
210+
<Link target="_blank" href="https://x.com/intentui" className="font-semibold text-fg">
211+
Intent UI
212212
</Link>
213213
, Inc. All rights reserved.
214214
</p>

resources/js/components/logo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { IconBrandJustd } from "justd-icons"
1+
import { IconBrandIntentui } from "@intentui/icons"
22
import type React from "react"
33
import { twMerge } from "tailwind-merge"
44

55
export function Logo({ className, ...props }: React.SVGProps<SVGSVGElement>) {
6-
return <IconBrandJustd className={twMerge("size-5", className)} {...props} />
6+
return <IconBrandIntentui className={twMerge("size-5", className)} {...props} />
77
}

resources/js/components/theme-switcher.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IconChevronLgDown, IconDeviceDesktop2, IconMoon, IconSun } from "justd-icons"
1+
import { IconChevronLgDown, IconDeviceDesktop2, IconMoon, IconSun } from "@intentui/icons"
22
import { Button } from "@/components/ui/button"
33
import { Menu } from "@/components/ui/menu"
44
import { useTheme } from "@/utils/use-theme"

resources/js/components/ui/checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IconCheck, IconMinus } from "justd-icons"
1+
import { IconCheck, IconMinus } from "@intentui/icons"
22
import type {
33
CheckboxGroupProps as CheckboxGroupPrimitiveProps,
44
CheckboxProps as CheckboxPrimitiveProps,

0 commit comments

Comments
 (0)