-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind-services.njk
34 lines (32 loc) · 1.19 KB
/
find-services.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: nygov.njk
title: NY.gov Services Search
---
{% from './_includes/_components.njk' import findServices %}
<style>{% include './_includes/findServices/_findServices.css' %}</style>
{{
findServices({
heading:"Service Finder Tool",
description:"Use the services finder tool to answer a few questions and get a customized list of potential services that you may be eligible for.",
backgroundColor:"pale-blue",
image:"https://www.ny.gov/sites/default/files/2025-01/ServiceFinderTool_Image_02.jpg",
imageAlt:"pregnant woman standing looking at a laptop computer",
links: [
{
text:"Use the Service <br> Finder Tool",
link:"https://forms.ny.gov/s3/Your-Services",
color:"primary-blue",
linkStyle:"button",
dataAttribute:"find-services-application"
},
{
text:"View All Services",
link:"/all-services",
linkStyle:"arrow",
color:"primary-light-blue",
dataAttribute:"view-all-services-filter"
}
]
})
}}
<script> {% include './_includes/findServices/_findServices.js' %}</script>