-
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
39 changed files
with
239 additions
and
42 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,9 @@ | ||
<?php | ||
|
||
return function ($display = false) { ?> | ||
<?php if (!$display) | ||
include "assets/svg/linklub_icon.svg"; ?> | ||
<span> | ||
<?= $display ? config("name", "linklub") : "linklub" ?> | ||
</span> | ||
<?php } ?> |
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,33 @@ | ||
<?php | ||
page("Login")->css("about.css")->disableNav()->heading(false); | ||
?> | ||
<nav> | ||
<ul> | ||
<li><button role="link" class="outline contrast" onclick="history.back()"><i class="fa fa-caret-left"></i> | ||
Retour</button></li> | ||
</ul> | ||
</nav> | ||
<div class="row center g-4"> | ||
<div class="col-12 col-md col-lg-7"> | ||
<h1 class="logo-top"> | ||
<?php import(__DIR__ . "/../components/linklub_logo.php")(false) ?> | ||
</h1> | ||
<div class="header"> | ||
Linklub est une application web qui permet de gérer les événements de votre club. Si vous cherchez un | ||
système de | ||
gestion d'événements simple et efficace, vous êtes au bon endroit. | ||
</div> | ||
</div> | ||
<div class="col-12 col-md-auto col-lg-5"> | ||
<div class="mockup-container"> | ||
<div class="mockup-phone"> | ||
<div class="camera"></div> | ||
<div class="display"> | ||
<div class="artboard"> | ||
<img class="image" src="assets/images/PhoneMockup.webp" alt=""> | ||
</div> | ||
</div> | ||
</div> | ||
</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
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,19 @@ | ||
<!-- Favicon --> | ||
<?php if (env("INTRANOSE")): ?> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/intranose/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/intranose/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/intranose/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/favicon/intranose/site.webmanifest"> | ||
<link rel="mask-icon" href="/assets/favicon/intranose/safari-pinned-tab.svg" color="#28b432"> | ||
<meta name="msapplication-TileColor" content="#00a300"> | ||
<?php else: ?> | ||
<link rel="icon" type="image/png" href="/assets/favicon/linklub/favicon-96x96.png" sizes="96x96" /> | ||
<link rel="icon" type="image/svg+xml" href="/assets/favicon/linklub/favicon.svg" /> | ||
<link rel="shortcut icon" href="/assets/favicon/linklub/favicon.ico" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/linklub/apple-touch-icon.png" /> | ||
<meta name="apple-mobile-web-app-title" content="Linklub" /> | ||
<link rel="manifest" href="/assets/favicon/linklub/site.webmanifest" /> | ||
<?php endif ?> | ||
|
||
<meta name="theme-color" content="#fff" media="(prefers-color-scheme: light)"> | ||
<meta name="theme-color" content="#13171f" media="(prefers-color-scheme: dark)"> |
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,82 @@ | ||
.logo-top { | ||
margin: 1rem auto 3rem; | ||
font-family: "Faro Light"; | ||
} | ||
|
||
@media (min-width: 768px) { | ||
.logo-top { | ||
margin-top: 3rem; | ||
} | ||
} | ||
|
||
.mockup-phone { | ||
display: inline-block; | ||
border: 4px solid #444; | ||
border-radius: 50px; | ||
background-color: #000; | ||
padding: 10px; | ||
margin: 0 auto; | ||
overflow: hidden; | ||
border-color: var(--primary-background); | ||
} | ||
|
||
.mockup-phone .display { | ||
border-radius: 40px; | ||
margin-top: -25px; | ||
} | ||
|
||
.artboard { | ||
width: 320px; | ||
height: 568px; | ||
border-radius: 1rem; | ||
background-color: #15191e; | ||
color: #a6adbb; | ||
box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f; | ||
display: flex; | ||
flex: none; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
border-radius: 40px; | ||
margin-top: -25px; | ||
} | ||
|
||
.mockup-phone .camera { | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
background: #000; | ||
height: 27px; | ||
width: 150px; | ||
margin: 0 auto; | ||
border-bottom-left-radius: 17px; | ||
border-bottom-right-radius: 17px; | ||
z-index: 11; | ||
} | ||
|
||
.mockup-phone .camera:before { | ||
content: ""; | ||
position: absolute; | ||
top: 35%; | ||
left: 50%; | ||
width: 50px; | ||
height: 4px; | ||
border-radius: 5px; | ||
background-color: #0c0b0e; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.mockup-phone .camera:after { | ||
content: ""; | ||
position: absolute; | ||
top: 20%; | ||
left: 70%; | ||
width: 8px; | ||
height: 8px; | ||
border-radius: 5px; | ||
background-color: #0f0b25; | ||
} | ||
|
||
.artboard > img { | ||
border-radius: 40px; | ||
} |
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
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.
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.
Oops, something went wrong.