forked from decentraland/old-documentation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
metaverse-agencies.html
87 lines (81 loc) · 5.24 KB
/
metaverse-agencies.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
---
<div class="wrapper home">
{% include sidebar.html %}
<section>
<div class="home-content">
{% capture content %}{% include partners.md %}{% endcapture %}
{{ content | markdownify }}
</div>
<h3>Provided Services</h3>
<table>
<tr>
<td class="service"><span class="tag tag-wearables">Wearable Design</span></td>
<td>3D Modeling skills to produce a wearable under the acceptance criteria of Decentraland's DAO Curators Committee. Such us hats, t-shirts and full-body skins.</td>
</tr>
<tr>
<td class="service"><span class="tag tag-architect">Architecture</span></td>
<td>3D Modeling and SDK Development skills to create objects and spaces ready to be placed in your Decentraland scene. Such as art galeries and parkour courses.</td>
</tr>
<tr>
<td class="service"><span class="tag tag-events">Event Production</span></td>
<td>A company of producers that can help you set up an event in a DCL venue. They can help find a venue for your needs, customizing the scene, promoting the event, doing a live-stream and more.</td>
</tr>
<tr>
<td class="service"><span class="tag tag-consulting">Consulting</span></td>
<td>Studios that will guide you through the whole process, from sketching ideas to launching your campaign to your audience.</td>
</tr>
<tr>
<td class="service"><span class="tag tag-land">Land Rental</span></td>
<td>Land owners offering a place to locate your experience in Decentraland's Genesis City.</td>
</tr>
</table>
<h1>Verified Partners</h1>
{% assign spartners = site.data.partners | sort: 'name' %}
{% for partner in spartners %}
<div class="providerContainer">
<div class="providerImage" style="background: url('{{ partner.image }}');background-size: contain;background-position: center;background-repeat: no-repeat;">
<a href="{{ partner.default_link }}" target="_blank"></a>
</div>
<div class="textContainer">
<h3 style="margin:0;margin-bottom:0.2rem;"><a href="{{ partner.default_link }}" target="_blank">{{ partner.name }}</a></h3>
<div class="meta">
<div class="tags">
{% assign stags = partner.tags | sort %}
{% for tag in stags %}
<span class="tag tag-{{ tag | slugify }}">{{ tag }}</span>
{% endfor %}
</div>
<div class="links">
{% if partner.website %}<a href="{{ partner.website }}" title="website" class="social-icon">{% include contact-icon.html icon="Website" %}</a>{% endif %}
{% if partner.email %}<a href="mailto:{{ partner.email }}" title="email" class="social-icon">{% include contact-icon.html icon="Email" %}</a>{% endif %}
{% if partner.discord %}<a href="{{ partner.discord }}" title="discord" class="social-icon">{% include contact-icon.html icon="Discord" %}</a>{% endif %}
{% if partner.twitter %}<a href="{{ partner.twitter }}" title="twitter" class="social-icon">{% include contact-icon.html icon="Twitter" %}</a>{% endif %}
{% if partner.instagram %}<a href="{{ partner.instagram }}" title="instagram" class="social-icon">{% include contact-icon.html icon="Instagram" %}</a>{% endif %}
{% if partner.linkedin %}<a href="{{ partner.linkedin }}" title="linkedin" class="social-icon">{% include contact-icon.html icon="Linkedin" %}</a>{% endif %}
{% if partner.vimeo %}<a href="{{ partner.vimeo }}" title="vimeo" class="social-icon">{% include contact-icon.html icon="Vimeo" %}</a>{% endif %}
{% if partner.soundcloud %}<a href="{{ partner.soundcloud }}" title="soundcloud" class="social-icon">{% include contact-icon.html icon="Soundcloud" %}</a>{% endif %}
{% if partner.youtube %}<a href="{{ partner.youtube }}" title="youtube" class="social-icon">{% include contact-icon.html icon="Youtube" %}</a>{% endif %}
</div>
</div>
<input type="checkbox" id="partner-{{ partner.partnerId }}" class="read-more-state" />
<p>{{ partner.description }}</p>
<table>
<tr><td>Region</td><td>{{ partner.location }}</td></tr>
<tr><td>Studio size</td><td>{{ partner.team_size }}</td></tr>
<tr><td>Languages</td><td>{{ partner.languages | join: ", " }}</td></tr>
<tr><td>Payment methods</td><td>{{ partner.payments | join: ", " }}</td></tr>
</table>
<label class="read-more-trigger" for="partner-{{ partner.partnerId }}"></label>
</div>
</div>
{% endfor %}
<p class="attribution">
This registry is lead by an independant team supported by <a href="https://governance.decentraland.org/proposal/?id=81af5b00-02e6-11ed-8f44-ef1722f0509f">Decentraland’s DAO</a>. If your organization is not on this list and you have experience building content for Decentraland, please <a href="https://dclstudios.typeform.com/to/L49y84qX">fill out this form</a>.
</p>
{% include newsletter.html %}
{%- comment -%} {% include override-color.html accent_color="#ff2d55" %} {%- endcomment -%}
{% include override-color.html accent_color="#f05" %}
{% include copy-code.html %}
</section>
</div>