add ppp
This commit is contained in:
BIN
src/lib/files/PPP.pdf
Normal file
BIN
src/lib/files/PPP.pdf
Normal file
Binary file not shown.
7
src/lib/mardown/Layout.svelte
Normal file
7
src/lib/mardown/Layout.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script>
|
||||
export let title;
|
||||
</script>
|
||||
|
||||
<h1>{title}</h1>
|
||||
|
||||
<slot ></slot>
|
||||
@@ -53,7 +53,8 @@
|
||||
display: flex;
|
||||
background-color: white;
|
||||
justify-content: space-between;
|
||||
width: 80%;
|
||||
width: 100%;
|
||||
max-width: 64rem;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
top: 20px;
|
||||
@@ -132,4 +133,14 @@
|
||||
background-color: var(--color-bg-nav);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.corner {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -42,5 +42,18 @@
|
||||
max-width: 300px;
|
||||
height: 100%;
|
||||
border-radius: 5%;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.hero img {
|
||||
max-width: 80%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -7,8 +7,6 @@ tags:
|
||||
- svelte
|
||||
---
|
||||
|
||||
# Internship report
|
||||
|
||||
During the year, I developed a website for a new association in Toulouse related to TISA (Toulouse, Computer Science, Security and Association). I developed this website using the Svelte framework because I was intrigued by its promise of performance and simplicity of development.
|
||||
|
||||
During this internship, I learned to use Svelte effectively and to set up a solid project architecture. I also had to work closely with the members of the association to understand their needs and vision for the website, in order to create a final product that met their expectations.
|
||||
|
||||
20
src/routes/shs/ppp/+page.md
Normal file
20
src/routes/shs/ppp/+page.md
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
title: 👨💻 Projet Personnel Professionnel
|
||||
date: 2022-12-31
|
||||
description: PPP
|
||||
tags:
|
||||
---
|
||||
|
||||
<script>
|
||||
import ppp from '$lib/files/PPP.pdf';
|
||||
</script>
|
||||
|
||||
<iframe src={ppp} class="ppp"></iframe>
|
||||
|
||||
<style>
|
||||
/* Display the iframe with a 16/9 ratio */
|
||||
.ppp {
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
}
|
||||
</style>
|
||||
@@ -10,7 +10,8 @@ const config = {
|
||||
preprocess: [
|
||||
vitePreprocess(),
|
||||
mdsvex({
|
||||
extensions: ['.md']
|
||||
extensions: ['.md'],
|
||||
layout: "src/lib/mardown/Layout.svelte"
|
||||
})
|
||||
],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user