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",
|
"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"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -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}'>
|
||||||
|
|
Loading…
Add table
Reference in a new issue