fix: faute de frappe et fix de type dans le project component.

This commit is contained in:
Nabil Ould Hamou 2024-01-05 21:57:56 +01:00
parent fc31019481
commit 4bcc59ea95
2 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@ const projects = [
{ {
"name": "AnimeWorld", "name": "AnimeWorld",
"stack": ["Symfony 6", "PHP", "Nginx"], "stack": ["Symfony 6", "PHP", "Nginx"],
"description": "University group project made in for a class. I also took the initiative to deploy the website on my VPS.", "description": "University group project made for Web Server Programming class. I also took the initiative to deploy the website on my VPS.",
"url": "https://github.com/luxray555/projetsymfony" "url": "https://github.com/luxray555/projetsymfony"
}, },
{ {

View file

@ -1,8 +1,8 @@
<script> <script lang="ts">
export let name; export let name: string;
export let stack; export let stack: string;
export let description; export let description: string;
export let url; export let url: string;
</script> </script>
<a target='_blank' href='{url}'> <a target='_blank' href='{url}'>