diff --git a/src/app/cars/[carid]/page.jsx b/src/app/cars/[carid]/page.jsx index 14bc4e2..96367f9 100644 --- a/src/app/cars/[carid]/page.jsx +++ b/src/app/cars/[carid]/page.jsx @@ -1,7 +1,7 @@ import React from "react"; import axios from "axios"; import { cookies } from "next/headers"; -import CarInformation from "@/components/information/CarInformation"; +import CarInformation from "@/components/singlepageCar/CarInformation"; export async function getCar(carid) { diff --git a/src/components/information/CarInformation.jsx b/src/components/singlepageCar/CarInformation.jsx similarity index 100% rename from src/components/information/CarInformation.jsx rename to src/components/singlepageCar/CarInformation.jsx