Test Hero component

This commit is contained in:
2020-11-05 04:02:35 +01:00
parent 8d46c0f8c0
commit 4bcfc0d518
5 changed files with 147 additions and 67 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div>
<Header />
<Hero title="wazo-lab.io" />
<Hero title="wazo-lab.io" :actions="heroActions" />
<Grid :dataSource="projects" />
<Contact />
</div>
@@ -13,7 +13,21 @@ import projects from "@/content/projects.json";
export default {
data() {
return {
projects: projects
projects: projects,
heroActions: [
{
title: "Projects",
url: "#projects",
target: "_self",
rel: "noopen noreferrer"
},
{
title: "Contact",
url: "#contact",
target: "_self",
rel: "noopen noreferrer"
}
]
};
}
};