fixing @components imports

This commit is contained in:
2024-12-11 16:59:49 -05:00
parent da51502861
commit 7891f7fb1b
7 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
import { Account } from "@db/schema/Account"; import { Account } from "@db/schema/Account";
import { getData } from "../../actions/accountActions"; import { getData } from "@actions/accountActions";
export default async function AccountsPage() { export default async function AccountsPage() {
const data = await getData(); const data = await getData();

View File

@@ -1,5 +1,5 @@
import { getData } from "../../actions/brandActions"; import { getData } from "@actions/brandActions";
import BrandsList from "../../components/Brand/BrandsList"; import BrandsList from "@components/Brand/BrandsList";
export default async function BrandsPage() { export default async function BrandsPage() {
const data = await getData(); const data = await getData();

View File

@@ -1,4 +1,4 @@
import { Button } from "src/components/ui/button"; import { Button } from "@components/ui/button";
export default function BuilderPage() { export default function BuilderPage() {

View File

@@ -1,4 +1,4 @@
import { Button } from "src/components/ui/button"; import { Button } from "@components/ui/button";
import { getPSA } from "@/db/queries/PSA"; import { getPSA } from "@/db/queries/PSA";
export default async function LowerReceiverPage() { export default async function LowerReceiverPage() {

View File

@@ -1,4 +1,4 @@
import { Provider } from "../components/ui/provider" import { Provider } from "@components/ui/provider"
import "../styles/globals.css"; import "../styles/globals.css";
import Navbar from "@components/Navbar"; import Navbar from "@components/Navbar";
import Footer from "@components/site/Footer"; import Footer from "@components/site/Footer";

View File

@@ -1,4 +1,4 @@
import { Button } from "src/components/ui/button" import { Button } from "@components/ui/button"
export default function About() { export default function About() {