mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
* BETTERZON-31, dependencies. * BETTERZON-31: Fixing dependencies * BETTERZON-31, BETTERZON-50 info popover and footer had been changed. * BETTERZON-74 simple top-bar has been created. * WIP: creating footer using grid. * BETTERZON-78 adding bottom bar and top bar * Adding cookieconsent as dependency again since it was removed by a merge * Adding cookieconsent as dependency again since it was removed by a merge * Apply suggestions from code review Switching from single to double quotes * BETTERZON-78 - grid added, structured as in Adobe XD mockup * wip: component rewritten, simple grid applied. * wip: new component created and added to the app.module.ts. Added a minimal grid layout. * wip: all components were wrapped now. Grid structure has been applied to the main wrapper-class "container". * wip: component created and added to the app.module.ts Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech> Co-authored-by: Patrick <50352812+Mueller-Patrick@users.noreply.github.com>
20 lines
725 B
HTML
20 lines
725 B
HTML
<app-hot-deals-widget></app-hot-deals-widget>
|
|
|
|
<!--<div id="mainComponents">
|
|
<div id="searchContainer">
|
|
<input type="text" [(ngModel)]="searchInput" placeholder="Search" (keyup.enter)="startedSearch()">
|
|
</div>
|
|
<div id="productListsContainer">
|
|
<div id="popularSearchesList">
|
|
<h2>Popular Searches</h2>
|
|
<app-product-list numberOfProducts="3" [showProductPicture]="true"
|
|
type="popularSearches"></app-product-list>
|
|
</div>
|
|
<div id="bestDealsList">
|
|
<h2>Best Deals</h2>
|
|
<app-product-list numberOfProducts="3" [showProductPicture]="true" type="bestDeals"></app-product-list>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
-->
|