Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
irsyadadl committed Mar 28, 2024
1 parent 627bfd9 commit 8b46788
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion resources/js/layouts/guest-layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PropsWithChildren, ReactNode } from 'react';
import ApplicationLogo from '@/components/application-logo';
import { ApplicationLogo } from '@/components/application-logo';
import { Link } from '@inertiajs/react';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';

Expand Down
4 changes: 2 additions & 2 deletions resources/js/layouts/partials/navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Link, router, usePage } from '@inertiajs/react';
import NavLink from '@/components/nav-link';
import ApplicationLogo from '@/components/application-logo';
import { ApplicationLogo } from '@/components/application-logo';
import { PageProps } from '@/types';
import {
DropdownMenu,
Expand All @@ -15,7 +15,7 @@ import ResponsiveNavbar from '@/layouts/partials/responsive-navbar';
import React from 'react';
import { IconChevronDown, IconSettings } from '@irsyadadl/paranoid';
import { Button } from '@/components/ui/button';
import { Avatar, AvatarImage } from '@/components/ui/avatar.tsx';
import { Avatar, AvatarImage } from '@/components/ui/avatar';

export default function Navbar() {
const { auth } = usePage<PageProps>().props;
Expand Down
2 changes: 1 addition & 1 deletion resources/js/layouts/partials/responsive-navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Link, router, usePage } from '@inertiajs/react';
import ApplicationLogo from '@/components/application-logo';
import { ApplicationLogo } from '@/components/application-logo';
import { PageProps } from '@/types';
import { ThemeToggle } from '@/components/theme-toggle';
import {
Expand Down
4 changes: 2 additions & 2 deletions resources/js/layouts/user-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import { Sheet, SheetContent, SheetTrigger } from '@/components/ui/sheet';
import { Head, Link, usePage } from '@inertiajs/react';
import { IconHamburger } from '@irsyadadl/paranoid';
import React from 'react';
import { ApplicationLogo } from '@/components/application-logo.tsx';
import { ApplicationLogo } from '@/components/application-logo';
import { PageProps } from '@/types';
import { Aside } from '@/layouts/partials/aside/aside.tsx';
import { Aside } from '@/layouts/partials/aside/aside';

export function UserLayout({ title, children }: { title?: string; children: React.ReactNode }) {
const { auth } = usePage<PageProps>().props;
Expand Down
2 changes: 1 addition & 1 deletion resources/js/pages/home.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Head } from '@inertiajs/react';
import { AppLayout } from '@/layouts/app-layout';
import ApplicationLogo from '@/components/application-logo';
import { ApplicationLogo } from '@/components/application-logo';
import Header from '@/components/header';
import Container from '@/components/container';
import { cn } from '@/lib/utils';
Expand Down
2 changes: 1 addition & 1 deletion resources/js/pages/legal/privacy-policy.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ApplicationLogo from '@/components/application-logo';
import { ApplicationLogo } from '@/components/application-logo';
import { Head, Link } from '@inertiajs/react';
import React from 'react';

Expand Down
2 changes: 1 addition & 1 deletion resources/js/pages/legal/terms-of-service.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ApplicationLogo from '@/components/application-logo';
import { ApplicationLogo } from '@/components/application-logo';
import { Head, Link } from '@inertiajs/react';
import React from 'react';

Expand Down
2 changes: 1 addition & 1 deletion resources/js/pages/users/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Input } from '@/components/ui/input';
import { InputError } from '@/components/input-error';
import React from 'react';
import { Button } from '@/components/ui/button';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card.tsx';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';

interface Props {
user: User;
Expand Down

0 comments on commit 8b46788

Please sign in to comment.