-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjenny-and-jill-clothing-storehubs.php
125 lines (119 loc) · 5.55 KB
/
jenny-and-jill-clothing-storehubs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
$title = "Home";
$pageDescription = "Home page description";
include 'header.php';
include 'navbar.php';
?>
<div class="page-wrapper">
<div class="container-fluid">
<div class="row sw-dash-landing mt-3">
<div class="col-md-12">
<div>
<a href="storehub-listings.php" class="sw-text-muted"> <i class="mdi mdi-chevron-left"></i> Storehubs</a>
</div>
<h2 class="mt-2 mb-4">Jenny & Jill Clothing</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="bg-white box-shadow b-radius-3 mb-4 w-100">
<div>
<form>
<div class="row sw-search-input px-4 py-4">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<div class="form-inline">
<div class="form-group search-icon">
<label class=" sr-only" for="search"></label>
<input type="Search" class="form-control" id="search" placeholder="Search Products">
</div>
</div>
</div>
<div class="col-xs-12 col-sm-8 col-md-8 col-lg-8 mt-2 mt-sm-4 mt-md-0">
<div class="text-center text-md-right">
<ul class="total-product mt-1">
<li><img class="img-fluid" src="./images/2-woocommerce.png" title="Woo Commerce"
alt="Woo Commerce"> </li>
<li><img class="img-fluid" src="./images/2-magento.png" title="Magento" alt="Magento">
</li>
<li><img class="img-fluid" src="./images/2-etsy.png" title="ETSY" alt="ETSY"> </li>
<!--<li>+40 </li>-->
</ul>
<a class="viewall" href="#" data-toggle="tooltip" data-html="true" data-placement="top"
title="Amazon <br> Shopify">+2 more</a>
<div class="btn-group mr-0 mr-sm-2">
<button type="button" class="btn btn-default dropdown-toggle sw-custm-dropdown w-auto"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="./images/icons/ico-settings.svg" class="img-responsive mr-2" alt="settings icon">
Settings <span class="caret ml-2"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Storehub settings</a></li>
<li><a href="#">Store settings</a></li>
</ul>
</div>
<a class="btn btn-primary sw-plus-ico pl-4 pr-5 py-2 w-auto" href="storehub-manage-stores.php" target="_blank">
<img src="./images/icons/ico-plus.svg" class="img-responsive mr-3" alt="plus icon">
Store
</a>
</div>
</div>
</div>
</form>
</div>
<hr class="mt-0">
<div class="row sw-welcome-store mb-5">
<div class="col-md-8">
<div>
<div class="text-center">
<h3>Say hi to your new storehub, Jenny!</h3>
<p class="sw-txt-margin sw-text-muted">Your storehub can do pretty cool stuff. Find all the good that
it does down below and start selling your ideas!</p>
</div>
</div>
</div>
</div>
<div class="row px-4 my-4 text-center text-md-left">
<div class="col-xs-12 col-sm-6 col-md-6">
<div class="sw-store-box b-radius-3 px-4 py-4">
<div>
<img src="./images/add-product.svg" class="img-responsive m-auto m-md-0" alt="add product">
</div>
<div>
<h4>Adding new products</h4>
<p class="sw-text-muted">Your Storehub can store all the amazing products you design. Once you finish
your design, We let you save your products in Storehubs, So you can publish the products to other
platforms.</p>
</div>
<div class="storehubb-btns">
<a class="btn btn-default mt-3 mb-2" href="#">Try it out now</a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 mt-4 mt-md-0">
<div class="sw-store-box b-radius-3 px-4 py-4">
<div>
<img src="./images/connect-store.svg" class="img-responsive m-auto m-md-0" alt="connect store">
</div>
<div>
<h4>Connect Stores</h4>
<p class="sw-text-muted">Your Storehub can connect to multiple stores so you can publish the products
you design quick and easy in all the stores at once.</p>
</div>
<div class="storehubb-btns">
<a class="btn btn-default mt-3 mb-2" href="#">Try it out now</a>
<a class="btn btn-default mt-3 mb-2" href="#">Connect more</a>
</div>
</div>
<br><small><b>Note for Developers :</b> When one or more store is connected then please hide the <b
class="btn btn-default disabled">Try it out now</b> button and Display <b
class="btn btn-default disabled">Connect more</b> button.</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include 'footer.php';
?>