···11import * as React from "react";
22import { View } from "react-native";
33-import {
44- Avatar,
55- AvatarFallback,
66- AvatarImage,
77-} from "../../components/ui/avatar";
33+import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
84import {
95 Card,
106 CardContent,
117 CardHeader,
128 CardTitle,
139} from "../../components/ui/card";
1414-import { Text } from "../../components/ui/text";
1515-import { useStore } from "../../stores/mainStore";
1010+import { Text } from "@/components/ui/text";
1111+import { useStore } from "@/stores/mainStore";
1612import AuthOptions from "../auth/options";
17131814import { Response } from "@atproto/api/src/client/types/app/bsky/actor/getProfile";
+3-3
apps/amethyst/app/auth/callback.tsx
···11import { Link, Stack, router } from "expo-router";
22import { View } from "react-native";
33-import { Text } from "../../components/ui/text";
33+import { Text } from "@/components/ui/text";
44import React, { useEffect } from "react";
55-import { Icon } from "../../lib/icons/iconWithClassName";
55+import { Icon } from "@/lib/icons/iconWithClassName";
66import { PencilLine } from "lucide-react-native";
77import { useLocalSearchParams } from "expo-router/build/hooks";
88-import { useStore } from "../../stores/mainStore";
88+import { useStore } from "@/stores/mainStore";
991010interface CallbackSearchParams {
1111 iss: string;
+6-6
apps/amethyst/app/auth/login.tsx
···33import React, { useState } from "react";
44import { Platform, View } from "react-native";
55import { SafeAreaView } from "react-native-safe-area-context";
66-import { Button } from "../components/ui/button";
77-import { Input } from "../components/ui/input";
88-import { Text } from "../components/ui/text";
99-import { Icon } from "../lib/icons/iconWithClassName";
1010-import { cn } from "../lib/utils";
66+import { Button } from "@/components/ui/button";
77+import { Input } from "@/components/ui/input";
88+import { Text } from "@/components/ui/text";
99+import { Icon } from "@/lib/icons/iconWithClassName";
1010+import { cn } from "@/lib/utils";
11111212import { openAuthSessionAsync } from "expo-web-browser";
1313-import { useStore } from "../stores/mainStore";
1313+import { useStore } from "@/stores/mainStore";
14141515const LoginScreen = () => {
1616 const [handle, setHandle] = useState("");
+1-1
apps/amethyst/app/auth/logoutModal.tsx
···11import { StatusBar } from "expo-status-bar";
22-import { Platform, StyleSheet, TouchableOpacity } from "react-native";
22+import { Platform, TouchableOpacity } from "react-native";
3344import { View } from "react-native";
55import { Text } from "../../components/ui/text";
+2-2
apps/amethyst/app/auth/options.tsx
···11import { Link, Stack, router } from "expo-router";
22import { View } from "react-native";
33-import { Text } from "../../components/ui/text";
44-import { Button } from "../../components/ui/button";
33+import { Text } from "@/components/ui/text";
44+import { Button } from "@/components/ui/button";
55import React from "react";
6677export default function AuthOptions() {
+3-3
apps/amethyst/app/auth/signup.tsx
···11import React from "react";
22import { View } from "react-native";
33import { SafeAreaView } from "react-native-safe-area-context";
44-import { Text } from "../../components/ui/text";
55-import { Button } from "../../components/ui/button";
66-import { Icon } from "../../lib/icons/iconWithClassName";
44+import { Text } from "@/components/ui/text";
55+import { Button } from "@/components/ui/button";
66+import { Icon } from "@/lib/icons/iconWithClassName";
77import { ArrowRight } from "lucide-react-native";
8899import { Link, Stack, router } from "expo-router";