fix: faute de frappe et fix de type dans le project component.
This commit is contained in:
parent
fc31019481
commit
4bcc59ea95
2 changed files with 6 additions and 6 deletions
|
@ -14,7 +14,7 @@ const projects = [
|
|||
{
|
||||
"name": "AnimeWorld",
|
||||
"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"
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<script>
|
||||
export let name;
|
||||
export let stack;
|
||||
export let description;
|
||||
export let url;
|
||||
<script lang="ts">
|
||||
export let name: string;
|
||||
export let stack: string;
|
||||
export let description: string;
|
||||
export let url: string;
|
||||
</script>
|
||||
|
||||
<a target='_blank' href='{url}'>
|
||||
|
|
Loading…
Add table
Reference in a new issue