create design to light page structure and content

This commit is contained in:
isUnknown 2025-01-21 17:50:59 +01:00
parent 8a2b90c8c0
commit 5a80cfaa81
9 changed files with 169 additions and 0 deletions

View file

@ -146,6 +146,11 @@ const mainItems = [
icon: "calendar",
disabled: true,
},
{
title: "Design to light",
path: "/design-to-light",
icon: "leaf",
},
{
title: "Inspirations",
path: "/inspirations",

View file

@ -0,0 +1,18 @@
<template>
<form action="">
<select name="projects" id="projects">
<option v-for="project in currentProjects" :value="project.slug">
{{ project.title }}
</option>
</select>
<input type="text" value="Design to light" />
<textarea placeholder="Décrivez votre demande…"> </textarea>
</form>
</template>
<script setup>
import { storeToRefs } from "pinia";
import { useProjectsStore } from "../../stores/projects";
const { currentProjects } = storeToRefs(useProjectsStore());
</script>