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 { getData } from "../../actions/accountActions";
import { getData } from "@actions/accountActions";
export default async function AccountsPage() {
const data = await getData();

View File

@@ -1,5 +1,5 @@
import { getData } from "../../actions/brandActions";
import BrandsList from "../../components/Brand/BrandsList";
import { getData } from "@actions/brandActions";
import BrandsList from "@components/Brand/BrandsList";
export default async function BrandsPage() {
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() {

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";
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 Navbar from "@components/Navbar";
import Footer from "@components/site/Footer";

View File

@@ -3,7 +3,7 @@ import Hero from "../Hero";
import FeaturesSection from "../FeaturesSection";
import About from "../site/About";
import Contact from "../site/Contact";
import Footer from "../site/Footer ";
import Footer from "../site/Footer";
export default function HomeContent() {

View File

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