diff --git a/src/App.vue b/src/App.vue index 5c534c1..9a9795c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,16 +3,16 @@ import { RouterLink, RouterView } from 'vue-router' - - - - Home - Login - Market - personal - - - + + + + + + + + + + diff --git a/src/assets/main.css b/src/assets/main.css index 42beb20..3f86cb6 100644 --- a/src/assets/main.css +++ b/src/assets/main.css @@ -8,11 +8,14 @@ box-sizing: border-box; } -p, span{ +*{ margin: 0 ; padding: 0; } - +input{ + border: none; + outline: none; +} a, .green { diff --git a/src/components/market/MarketCard.vue b/src/components/market/MarketCard.vue new file mode 100644 index 0000000..47f31d0 --- /dev/null +++ b/src/components/market/MarketCard.vue @@ -0,0 +1,60 @@ + + + + + + + {{ props.marketData.title }} + + + {{ props.marketData.info }} + + + View Product -> + + + + + + diff --git a/src/type/market/Market.ts b/src/type/market/Market.ts new file mode 100644 index 0000000..8b7570d --- /dev/null +++ b/src/type/market/Market.ts @@ -0,0 +1,6 @@ +export interface MarketData { + title: string; + description: string; + price: number; + cover: string; +} \ No newline at end of file diff --git a/src/views/market/index.vue b/src/views/market/index.vue index 96c0baf..657fafd 100644 --- a/src/views/market/index.vue +++ b/src/views/market/index.vue @@ -1,11 +1,91 @@ + + + + + + Market + Curated products selected for digital design professionals like you. + + + + + + + + + \ No newline at end of file
Market
Curated products selected for digital design professionals like you.