-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add sort navigation bar and products
- Loading branch information
Showing
9 changed files
with
195 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"sqltools.connections": [ | ||
{ | ||
"previewLimit": 50, | ||
"driver": "SQLite", | ||
"database": "${workspaceFolder:finalproject}/Data/ApplicationDbContext.cs", | ||
"name": "data" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
@page | ||
@model NewArrivalsModel | ||
@{ | ||
ViewData["Title"] = "New Arrivals"; | ||
} | ||
|
||
<div class="container"> | ||
<div class="row mt-5"> | ||
<div class="col-12 text-center"> | ||
<h2>NEW ARRIVALS</h2> | ||
<p>Check here for our latest selections of Tops, Dresses, Skirts, Denim, Accessories and MORE!</p> | ||
</div> | ||
</div> | ||
<div class="row mt-3"> | ||
<div class="col-md-3 col-sm-6 mb-4"> | ||
<div class="card h-100"> | ||
<img src="~/images/jeans.jpg" class="card-img-top" alt="Jeans"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Jeans</h5> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-3 col-sm-6 mb-4"> | ||
<div class="card h-100"> | ||
<img src="~/images/necklace.jpg" class="card-img-top" alt="Necklace"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Necklace</h5> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-3 col-sm-6 mb-4"> | ||
<div class="card h-100"> | ||
<img src="~/images/dress.jpg" class="card-img-top" alt="Dress"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Dress</h5> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Add more items as needed --> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using Microsoft.AspNetCore.Mvc.RazorPages; | ||
|
||
namespace Project.Pages | ||
{ | ||
public class NewArrivalsModel : PageModel | ||
{ | ||
public void OnGet() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Empty file.