-
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.
- Loading branch information
Showing
128 changed files
with
34,198 additions
and
78 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
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,23 @@ | ||
@page "/nos-cartes" | ||
@model OsanWebsite.Web.Pages.CardsPageModel | ||
@{ | ||
ViewData["Title"] = "Nos Cartes"; | ||
} | ||
|
||
<h4>Nos Cartes</h4> | ||
|
||
<div style="display:flex;align-items:center; background-color: #ffeccc; border-radius: 10px; padding: 15px; font-size: 9pt; color:#540b1c; margin-bottom: 15px;"> | ||
<span class="fa fa-file-pdf" style="font-size: 24pt;"></span> | ||
<div style="flex-grow: 1; margin-left: 10px;"> | ||
<div style="font-weight: bold;">Cartes des Repas</div> | ||
<a href="~/docs/carte-repas-OSAN-v2.pdf" target="_blank" class="osan-link">Télécharger</a> | ||
</div> | ||
</div> | ||
|
||
<div style="display:flex;align-items:center; background-color: #ffeccc; border-radius: 10px; padding: 15px; font-size: 9pt; color:#540b1c; margin-bottom: 15px;"> | ||
<span class="fa fa-file-pdf" style="font-size: 24pt;"></span> | ||
<div style="flex-grow: 1; margin-left: 10px;"> | ||
<div style="font-weight: bold;">Cartes des Boissons</div> | ||
<a href="~/docs/carte-boissons-OSAN-v2.pdf" target="_blank" class="osan-link">Télécharger</a> | ||
</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,12 @@ | ||
using Microsoft.AspNetCore.Mvc; | ||
using Microsoft.AspNetCore.Mvc.RazorPages; | ||
|
||
namespace OsanWebsite.Web.Pages | ||
{ | ||
public class CardsPageModel : 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@page "/livraison" | ||
@model OsanWebsite.Web.Pages.DeliveryPageModel | ||
@{ | ||
ViewData["Title"] = "Livraison"; | ||
} | ||
|
||
<h4>Se faire livrer</h4> | ||
|
||
<img src="~/images/livraison1.jpg" style="width: 100%; border-top-left-radius: 10px;border-top-right-radius: 10px; border: 1px solid #e1bbc5;border-bottom-width: 0px;" /> | ||
<div style="border: 1px solid #e1bbc5;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px; padding: 10px; background-color: #ffeccc;border-top-width: 0px;padding-top: 10px; font-size: 10pt;color:#540b1c"> | ||
Savourez le raffinement d'<strong>O'SAN</strong> chez vous ou au bureau. Notre service de livraison à domicile vous propose nos délices culinaires et vins | ||
d'exception, de midi à 23h à Douala 5e, avec des frais de livraison de seulement 1000FCFA. Commandez dès maintenant pour une expérience | ||
gastronomique unique, où le luxe s'invite chez vous. | ||
|
||
<br /> | ||
<br /> | ||
<div style="text-align:center;margin-top: 5px;"> | ||
<div style="font-weight: bold;">Consultez <a href="/nos-cartes" class="osan-link" style="display:inline-block">Nos cartes</a> puis contactez nous.</div> | ||
<div style="font-size: 14pt;"><span class="fa fa-phone"></span> <span class="fa-brands fa-whatsapp"></span> (+237) 692 62 38 85</div> | ||
</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,12 @@ | ||
using Microsoft.AspNetCore.Mvc; | ||
using Microsoft.AspNetCore.Mvc.RazorPages; | ||
|
||
namespace OsanWebsite.Web.Pages | ||
{ | ||
public class DeliveryPageModel : 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
44 changes: 19 additions & 25 deletions
44
src/OsanWebsite.Web/Pages/Shared/Components/SideContent/Default.cshtml
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
|
||
@RenderSection("metatags", required: false) | ||
|
||
<link rel="stylesheet" href="~/css/bootstrap4/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="~/lib/bootstrap/css/bootstrap.min.css"> | ||
<link href="_content/Blazorise.Icons.FontAwesome/v6/css/all.min.css" rel="stylesheet"> | ||
<link href="_content/Blazorise/blazorise.css" rel="stylesheet" /> | ||
<link href="_content/Blazorise.Bootstrap/blazorise.bootstrap.css" rel="stylesheet" /> | ||
|
@@ -41,9 +41,21 @@ | |
<div id="navbar"> | ||
<div id="navbar-body"> | ||
<span style="font-size: 12pt;flex-grow:1;color:white;">O'SAN Cave</span> | ||
|
||
<a href="/" class="osan-btn" style="display: inline; width:auto;margin-right: 5px;padding: 5px 10px;"><span class="fa fa-home" /></a> | ||
<a href="/a-propos" class="osan-btn" style="display: inline; width:auto;margin-right: 5px;padding: 5px 10px;">À propos</a> | ||
<a href="/reservation" class="osan-btn" style="display: inline; width:auto;padding: 5px 10px;">Réserver</a> | ||
<a href="/reservation" class="osan-btn" style="display: inline; width:auto;padding: 5px 10px;margin-right: 5px;">Réservation</a> | ||
<a href="/livraison" class="osan-btn" style="display: inline; width:auto;padding: 5px 10px;margin-right: 5px;">Livraison</a> | ||
|
||
<div class="dropdown"> | ||
<a class="osan-btn dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-expanded="false"> | ||
|
||
</a> | ||
|
||
<div class="dropdown-menu dropdown-menu-right"> | ||
<a class="dropdown-item" href="/a-propos">À propos</a> | ||
<a class="dropdown-item" href="/nos-cartes">Nos cartes</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
@@ -60,6 +72,8 @@ | |
</div> | ||
|
||
<script src="~/lib/jquery/dist/jquery.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="~/lib/bootstrap/js/bootstrap.js"></script> | ||
|
||
<script src="~/lib/slick-carousel/slick.min.js"></script> | ||
<script src="~/lib/Swiper/swiper-bundle.min.js"></script> | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,10 @@ | |
{ | ||
"library": "[email protected]", | ||
"destination": "wwwroot/lib/Swiper/" | ||
}, | ||
{ | ||
"library": "[email protected]", | ||
"destination": "wwwroot/lib/bootstrap/" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
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.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.