Skip to content

Commit

Permalink
feat(ui): Use absolute Paths in the Special Login Component
Browse files Browse the repository at this point in the history
  • Loading branch information
onissen committed Nov 30, 2024
1 parent e59d9d8 commit e57500b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ export * from "@northware/ui/components/next-themes/ThemeProvider";
export * from "@northware/ui/components/panels/Card";

// Specific (Components that are used for a specific feature)
export * from "./specific/Login";
export * from "@northware/ui/components/specific/Login";
13 changes: 9 additions & 4 deletions packages/ui/src/components/specific/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,19 @@ import {
FormLabel,
FormControl,
FormMessage,
} from "../form-parts/Form";
import { Input } from "../form-parts/Input";
} from "@northware/ui/components/form-parts/Form";
import { Input } from "@northware/ui/components/form-parts/Input";
import { z } from "zod";
import { zodResolver } from "@hookform/resolvers/zod";
import Image from "next/image";
import { Card, CardContent, CardHeader, CardTitle } from "../panels/Card";
import {
Card,
CardContent,
CardHeader,
CardTitle,
} from "@northware/ui/components/panels/Card";
import { useTheme } from "next-themes";
import { Button } from "../base/Button";
import { Button } from "@northware/ui/components/base/Button";

const formSchema = z.object({
email: z.string(),
Expand Down

0 comments on commit e57500b

Please sign in to comment.