mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
fixing @components imports
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
@@ -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() {
|
||||||
|
|||||||
@@ -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() {
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import Hero from "../Hero";
|
|||||||
import FeaturesSection from "../FeaturesSection";
|
import FeaturesSection from "../FeaturesSection";
|
||||||
import About from "../site/About";
|
import About from "../site/About";
|
||||||
import Contact from "../site/Contact";
|
import Contact from "../site/Contact";
|
||||||
import Footer from "../site/Footer ";
|
import Footer from "../site/Footer";
|
||||||
|
|
||||||
export default function HomeContent() {
|
export default function HomeContent() {
|
||||||
|
|
||||||
|
|||||||
@@ -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() {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user