diff --git a/assets/makes.json b/assets/makes.json
new file mode 100644
index 0000000..8ab1576
--- /dev/null
+++ b/assets/makes.json
@@ -0,0 +1,54 @@
+[
+ "Acura",
+ "Alfa Romeo",
+ "Aston Martin",
+ "Audi",
+ "Bentley",
+ "BMW",
+ "Buick",
+ "Cadillac",
+ "Chevrolet",
+ "Chrysler",
+ "Dodge",
+ "Dodge or Ram",
+ "Ferrari",
+ "Fiat",
+ "Ford",
+ "Genesis",
+ "GMC",
+ "Honda",
+ "Hummer",
+ "Hyundai",
+ "Infiniti",
+ "Jaguar",
+ "Jeep",
+ "Kia",
+ "Land Rover",
+ "Lexus",
+ "Lincoln",
+ "Maserati",
+ "Mazda",
+ "McLaren",
+ "Mercedes-AMG",
+ "Mercedes-Benz",
+ "MINI",
+ "Mitsubishi",
+ "Nissan",
+ "Oldsmobile",
+ "Plymouth",
+ "Pontiac",
+ "Porsche",
+ "Ram",
+ "Rolls-Royce",
+ "Saab",
+ "Saturn",
+ "Scion",
+ "Smart",
+ "Subaru",
+ "Suzuki",
+ "Tesla",
+ "Toyota",
+ "Triumph",
+ "Volkswagen",
+ "Volvo"
+]
\ No newline at end of file
diff --git a/components/Car/SideBar.vue b/components/Car/SideBar.vue
index e05c341..8345c32 100644
--- a/components/Car/SideBar.vue
+++ b/components/Car/SideBar.vue
@@ -1,4 +1,6 @@
-
-
-
Location
-
- {{ route.params.city }}
-
-
-
- Apply
-
-
-
-
Make
-
Toyota
-
-
- Apply
-
-
-
-
Price
-
Toyota
-
-
- Apply
-
-
-
+
+
+
+
Location
+
+ {{ route.params.city }}
+
+
+
+ Apply
+
+
+
+
+
+
+
Make
+
{{ route.params.make || "Any" }}
+
+
{{ make }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/composables/useCars.ts b/composables/useCars.ts
index 301d053..b9a47f0 100644
--- a/composables/useCars.ts
+++ b/composables/useCars.ts
@@ -1,7 +1,9 @@
import cars from "@/assets/cars.json"
+import makes from "@/assets/makes.json"
export const useCars = () => {
return {
cars,
+ makes
};
};
\ No newline at end of file