diff --git a/src/app/Accounts/page.tsx b/src/app/Accounts/page.tsx index c7ce191..977a7e0 100644 --- a/src/app/Accounts/page.tsx +++ b/src/app/Accounts/page.tsx @@ -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(); diff --git a/src/app/Brands/page.tsx b/src/app/Brands/page.tsx index f0983f4..04f9de4 100644 --- a/src/app/Brands/page.tsx +++ b/src/app/Brands/page.tsx @@ -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(); diff --git a/src/app/Builder/page.tsx b/src/app/Builder/page.tsx index 35bba60..ed79e20 100644 --- a/src/app/Builder/page.tsx +++ b/src/app/Builder/page.tsx @@ -1,4 +1,4 @@ -import { Button } from "src/components/ui/button"; +import { Button } from "@components/ui/button"; export default function BuilderPage() { diff --git a/src/app/Products/lowers/page.tsx b/src/app/Products/lowers/page.tsx index 403b0d2..7bebaf2 100644 --- a/src/app/Products/lowers/page.tsx +++ b/src/app/Products/lowers/page.tsx @@ -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() { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 676bdd3..563acc2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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"; diff --git a/src/components/HomeContent/index.tsx b/src/components/HomeContent/index.tsx index b38a21d..5a8a68f 100644 --- a/src/components/HomeContent/index.tsx +++ b/src/components/HomeContent/index.tsx @@ -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() { diff --git a/src/components/site/About/index.tsx b/src/components/site/About/index.tsx index df0f2d0..81de52b 100644 --- a/src/components/site/About/index.tsx +++ b/src/components/site/About/index.tsx @@ -1,4 +1,4 @@ -import { Button } from "src/components/ui/button" +import { Button } from "@components/ui/button" export default function About() {