source: KernelRecordsMVC.Web/Views/Home/Index.cshtml@ d89d25b

main
Last change on this file since d89d25b was d89d25b, checked in by mmilevski <markomilevski3@…>, 4 weeks ago

Added few implementaions, minor UI changes.

  • Property mode set to 100644
File size: 3.6 KB
Line 
1@{
2 ViewData["Title"] = "Home";
3}
4
5<div class="home-page">
6
7 <!-- =====================================================
8 HERO
9 ===================================================== -->
10
11 <section class="home-hero">
12
13 <div class="home-hero-content">
14
15 <h1>
16 MUSIC
17 <span>FOR</span>
18 YOUR COLLECTION.
19 </h1>
20
21 <p>
22 Discover vinyl records, CDs and cassettes
23 from artists and releases worth keeping.
24 </p>
25
26
27 <div class="home-hero-actions">
28
29 <a asp-controller="Release"
30 asp-action="Index"
31 class="home-button primary">
32
33 Browse Collection
34
35 </a>
36
37 <a asp-controller="Sale"
38 asp-action="Index"
39 class="home-button secondary">
40
41 Shop Sale
42
43 </a>
44
45 </div>
46
47 </div>
48
49
50 <div class="hero-logo">
51 <img src="~/images/logo.png"
52 asp-append-version="true"
53 alt="Kernel Records"
54 class="hero-logo-image" />
55 </div>
56
57 </section>
58
59
60 <!-- =====================================================
61 QUICK LINKS
62 ===================================================== -->
63
64 <section class="home-section">
65
66 <div class="home-section-header">
67
68 <div>
69
70 <span class="section-label">
71 SHOP
72 </span>
73
74 <h2>
75 Find something you like.
76 </h2>
77
78 </div>
79
80 </div>
81
82
83 <div class="home-feature-grid">
84
85 <a asp-controller="Release"
86 asp-action="Index"
87 class="home-feature-card">
88
89 <span>01</span>
90
91 <h3>
92 Browse Releases
93 </h3>
94
95 <p>
96 Explore albums and singles.
97 </p>
98
99 <strong>
100 Explore →
101 </strong>
102
103 </a>
104
105
106 <a asp-controller="TopSellers"
107 asp-action="Index"
108 class="home-feature-card">
109
110 <span>02</span>
111
112 <h3>
113 Top Sellers
114 </h3>
115
116 <p>
117 See what other collectors are buying.
118 </p>
119
120 <strong>
121 View Top Sellers →
122 </strong>
123
124 </a>
125
126
127 <a asp-controller="Sale"
128 asp-action="Index"
129 class="home-feature-card sale-feature">
130
131 <span>03</span>
132
133 <h3>
134 Sale
135 </h3>
136
137 <p>
138 Find discounted physical releases.
139 </p>
140
141 <strong>
142 Shop Sale →
143 </strong>
144
145 </a>
146
147 </div>
148
149 </section>
150
151
152 <!-- =====================================================
153 COLLECTION INFO
154 ===================================================== -->
155
156 <section class="home-collection">
157
158 <div>
159
160 <span class="section-label">
161 PHYSICAL MUSIC
162 </span>
163
164 <h2>
165 Vinyl. CDs. Cassettes.
166 </h2>
167
168 </div>
169
170 <p>
171 Build a physical collection with releases
172 available in the formats you actually want.
173 </p>
174
175 </section>
176
177</div>
Note: See TracBrowser for help on using the repository browser.