Create and publish a live personal page. Submit your URL when done.
Create a free account with your email address.
Use the same email you provided during your application.
Name it anything (your own name works).
Choose Page as the model type. Set Name to Home and Path to /. Click Save.
Add each field. Click Add Field, choose the type, enter the name exactly as shown, and save.
| Field Handle | Type | |
|---|---|---|
| full_name | Text | Required |
| role | Text | Required |
| photo | Image | Required |
| bio | Rich Text | Required |
| location | Text | Optional |
| linkedin_url | Text | Optional |
Field names must match exactly — lowercase with underscores.
Fill in all required fields — name, role, photo, and bio. Add location and LinkedIn if you like. Click Save.
Paste the code below into the editor and click Save. You don't need to understand it — just paste it exactly.
<!-- Home Page Template -->
<div class="min-h-screen bg-gray-950 flex items-center justify-center p-8">
<div class="w-full max-w-sm text-center">
<img src="<%- src(item.photo, '200x200') %>"
class="w-24 h-24 rounded-full object-cover mx-auto mb-6 ring-2 ring-white/10">
<h1 class="text-3xl font-semibold text-white mb-1"><%= item.full_name %></h1>
<p class="text-sm text-gray-400 mb-4"><%= item.role %></p>
<% if (item.location) { %>
<p class="text-xs text-gray-500 mb-6">📍 <%= item.location %></p>
<% } %>
<div class="text-sm text-gray-300 leading-relaxed mb-8"><%- item.bio %></div>
<% if (item.linkedin_url) { %>
<a href="<%= item.linkedin_url %>"
class="inline-block text-sm text-white border border-white/20 hover:border-white/50 px-5 py-2 rounded-full transition-colors">
LinkedIn →
</a>
<% } %>
</div>
</div>
Click Site Preview. If anything looks wrong, go back to Content, edit your page, and refresh.
Now it's your turn to get creative. Improve this page in any way you can — there are no wrong answers. You could:
This is your chance to explore SleekCMS and show us what you can do. Spend as much or as little time as you'd like.
Find your live URL and open it in your browser to confirm it loads.
https://your-site-name.sleekcms.site/
Paste your live URL into the submission form. The page must be publicly accessible.
Paste your live URL below once your page is published