+
+
Type
+
+
+
+ Cup
+
+
+
+ Jeans
+
+
+
+ Candel
+
+
+
+ T-shirt
+
+
+
+ umbrella
+
+
+
+ Carpet
+
+
+
+ plate
+
+
+
+ Shoose
+
+
+
+ Spoon
+
+
+
+ Mosaico
+
+
+
+ Other
+
+
+
+
+
+
+
Tages
+
+
+
+
+ Clothes
+
+
+
+
+
+ Men
+
+
+
+
+
+ Food
+
+
+
+
+
+ Women
+
+
+
+
+
+
+
+
Sort by
+
+
+ Most Popular
+
+
+
+
+
+
+ Most Popular
+
+
+
+
+
+
+
diff --git a/client/src/app/pages/filter/filter.page.scss b/client/src/app/pages/filter/filter.page.scss
new file mode 100644
index 0000000..a11446f
--- /dev/null
+++ b/client/src/app/pages/filter/filter.page.scss
@@ -0,0 +1,16 @@
+ion-content {
+ --background: #f0f0f2;
+
+ .upperBox {
+ background-color: #fff;
+ box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
+ ;
+ height: auto;
+ margin-bottom: 10px;
+ padding: 20px;
+ h3{
+ font-size:20px;
+ color:red;
+ }
+ }
+}
diff --git a/client/src/app/pages/filter/filter.page.ts b/client/src/app/pages/filter/filter.page.ts
new file mode 100644
index 0000000..64f0350
--- /dev/null
+++ b/client/src/app/pages/filter/filter.page.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-filter',
+ templateUrl: './filter.page.html',
+ styleUrls: ['./filter.page.scss'],
+})
+export class FilterPage implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}