mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
fixing @components imports
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Button } from "src/components/ui/button";
|
||||
import { Button } from "@components/ui/button";
|
||||
|
||||
|
||||
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";
|
||||
|
||||
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 Navbar from "@components/Navbar";
|
||||
import Footer from "@components/site/Footer";
|
||||
|
||||
@@ -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() {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Button } from "src/components/ui/button"
|
||||
import { Button } from "@components/ui/button"
|
||||
|
||||
export default function About() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user