ça commence doucement
hehehe c b1 de kodé
This commit is contained in:
parent
2255eafc08
commit
28f57e9835
8 changed files with 517 additions and 11 deletions
75
public/assests/css/style.css
Normal file
75
public/assests/css/style.css
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
body {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: #ffffff;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
padding: 0.8rem 2rem;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #0d6efd !important;
|
||||
}
|
||||
|
||||
.navbar-brand span {
|
||||
color: #6c757d;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link {
|
||||
color: #333;
|
||||
font-weight: 500;
|
||||
padding: 0.5rem 1rem;
|
||||
margin: 0 0.2rem;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link:hover {
|
||||
color: #0d6efd;
|
||||
}
|
||||
|
||||
.btn-login {
|
||||
color: #333;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
font-weight: 500;
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
|
||||
.btn-login:hover {
|
||||
color: #0d6efd;
|
||||
}
|
||||
|
||||
.btn-signup {
|
||||
background-color: #0d6efd;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 25px;
|
||||
padding: 0.5rem 2rem;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.btn-signup:hover {
|
||||
background-color: #0b5ed7;
|
||||
}
|
||||
|
||||
.notification-bell {
|
||||
font-size: 1.2rem;
|
||||
color: #6c757d;
|
||||
margin-right: 1rem;
|
||||
cursor: pointer;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.notification-bell:hover {
|
||||
color: #0d6efd;
|
||||
}
|
||||
|
||||
.logo-image {
|
||||
height: 30px;
|
||||
width: auto;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
BIN
public/assests/img/Logo.png
Normal file
BIN
public/assests/img/Logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 232 KiB |
|
|
@ -1,11 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
COUCOU
|
||||
</body>
|
||||
</html>
|
||||
<?php
|
||||
require_once '../app/views/partials/header.php' ;
|
||||
|
||||
require "../app/models/project_model.php";
|
||||
$objProjectModel = new ProjectModel;
|
||||
$arrArticle = $objProjectModel->findAll(4);
|
||||
|
||||
var_dump($arrArticle);
|
||||
|
||||
?>
|
||||
|
||||
<section class="container mt-5 p-5 d-flex flex-column align-items-center text-center">
|
||||
<h1>Folliow</h1>
|
||||
<h2>Là où les talents rencontrent leur avenir</h2>
|
||||
<p class="col-6">Une plateforme de portfolio adapté à vos besoins et aux besoins des entreprises.
|
||||
Créer un portfolio réellement pertinent aux exigences du marché et rentrez
|
||||
directement en contact avec les entreprises.</p>
|
||||
</section>
|
||||
|
||||
<section aria-label="Articles récents">
|
||||
<h2 class="visually-hidden">Les 4 derniers articles</h2>
|
||||
<div class="row mb-2">
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
require_once '../app/views/partials/footer.php' ;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue