Skip to content

Commit c6fcde2

Browse files
authored
Final tweaks for landing page (#8)
* Make all images in docs have thumbnail style * Make name and email required on buy form and change email placeholder to firmhouse.com * Added our logo as svg to menu * Added logo to frontpage
1 parent 11260a2 commit c6fcde2

File tree

9 files changed

+27
-13
lines changed

9 files changed

+27
-13
lines changed

_includes/menu.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<span class="icon-bar"></span>
88
<span class="icon-bar"></span>
99
</button>
10-
<a class="navbar-brand" href="../">
11-
<span>Intercity.io</span>
10+
<a class="navbar-brand" href="/">
11+
<span><img src="/images/logo.svg" width="30"> Intercity</span>
1212
</a>
1313
</div>
1414
<div class="navbar-collapse collapse" id="navbar-collapse">

docs/add-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ With your app server installed, let's go ahead and create an app on it. There's
99

1010
Just click the "New app" button, enter your app's name and you're good to go! In the background, your Intercity instance will prepare all necessities on your app server to host and deploy your app.
1111

12-
<img src="/images/[email protected]" class="img-responsive">
12+
<img src="/images/[email protected]" class="img-responsive img-thumbnail">
1313

1414
## Next Step
1515

docs/configure-domain-name.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ After installing your server and adding an app to it, you want your app to be ac
1111

1212
From your app server's apps overview page, go into your app. You'll see the following screen:
1313

14-
<img src="/images/[email protected]" class="img-responsive">
14+
<img src="/images/[email protected]" class="img-responsive img-thumbnail">
1515

1616
Click on the "Domains" tab under your app name, which will bring you to the page to manage domain names for your app.
1717

18-
<img src="/images/[email protected]" class="img-responsive">
18+
<img src="/images/[email protected]" class="img-responsive img-thumbnail">
1919

2020
To the right you see the "Add a new domain" form. Enter the domain name that you want your app to be accessible on, and click "Add".
2121

docs/initial-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Intercity is a multi-user system so you need to create the first user to get sta
1313

1414
The first user can be created by filling out the form that is displayed right after installing and starting Intercity. Just point your browser to the hostname or ip address of the server where you've installed Intercity and you'll see this screen:
1515

16-
<img src="/images/[email protected]" alt="Initial setup screen" class="img-responsive">
16+
<img src="/images/[email protected]" alt="Initial setup screen" class="img-responsive img-thumbnail">
1717

1818
Enter your email and choose a password and continue to the next step.
1919

@@ -23,7 +23,7 @@ It's important that your Intercity dashboard can send emails. This way your user
2323

2424
Right after creating the first user, you'll see the following screen:
2525

26-
<img src="/images/[email protected]" class="img-responsive">
26+
<img src="/images/[email protected]" class="img-responsive img-thumbnail">
2727

2828
On this screen, enter an email address that you want Intercity to use as sending email address. You MUST enter valid SMTP settings if you want actual email delivery to work. If you don't have an SMTP server, get one via [Mailgun](https://mailgun.com) or [Postmark](https://postmark.com).
2929

docs/install-server.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ To host your apps, you first need to obtain a second server. This will be the pr
1111

1212
When you've obtained your app server, go into your Intercity instance dashboard and click the "Add a new server" button.
1313

14-
<img src="/images/[email protected]" class="img-responsive">
14+
<img src="/images/[email protected]" class="img-responsive img-thumbnail">
1515

1616
A dialog form shows up where you can enter a name and the IP address or hostname where your app server can be reached by your Intercity instance.
1717

1818
## Allowing access via SSH
1919

2020
A new screen appears that shows that your Intercity instance is polling for an SSH key to be present on your app server. You now need to copy and paste the shown SSH key into the /root/.ssh/authorized_keys file on your app server.
2121

22-
<img src="/images/[email protected]" class="img-responsive">
22+
<img src="/images/[email protected]" class="img-responsive img-thumbnail">
2323

2424
Once Intercity has confirmed it has access to your server, you can proceed to the server installation step. In the next step your server will be properly configured to host apps.
2525

2626
## Installing your server...
2727

2828
Intercity is now showing you it's progress to configure your app server. It will install all the required software for you to host and deploy your apps. You don't have to do a thing. Once the four setup steps are completed, you can continue.
2929

30-
<img src="/images/[email protected]" class="img-responsive">
30+
<img src="/images/[email protected]" class="img-responsive img-thumbnail">
3131

3232
## Next steps
3333

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This command will return A LOT of output. In the end you'll see something like t
3333

3434
Point your browser to **http://yourserver.com/** or **http://yourip/** and the following screen appears. This means that Intercity is running and ready to be configured via the first-run web interface.
3535

36-
<img src="/images/[email protected]" alt="Initial setup screen" class="img-responsive">
36+
<img src="/images/[email protected]" alt="Initial setup screen" class="img-responsive img-thumbnail">
3737

3838
## Next step
3939

images/logo.svg

Lines changed: 11 additions & 0 deletions
Loading

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
---
55

66
<div class="block text-center p-t-md p-b-0">
7+
<div class="text-center">
8+
<img src="/images/logo.svg" width="100">
9+
</div>
710
<h1 class="block-title">Intercity</h1>
811
<h3>Get your apps up and running in no time.</h3>
912
<h4>A server management dashboard for hosting apps.</h4>

support/buy.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ <h3 class="text-muted">Please fill out the form below and we'll get in touch wit
2222
{% endif %}
2323
<div class="form-group">
2424
<label for="name">Your Name</label>
25-
<input type="text" class="form-control" id="name" name="name" placeholder="Michiel Sikkes">
25+
<input type="text" class="form-control" id="name" name="name" placeholder="Michiel Sikkes" required>
2626
</div>
2727
<div class="form-group">
2828
<label for="email">Your Email</label>
29-
<input type="email" class="form-control" id="email" name="email" placeholder="michiel@perfectapps.com">
29+
<input type="email" class="form-control" id="email" name="email" placeholder="michiel@firmhouse.com" required>
3030
</div>
3131
<div class="form-group">
3232
<label for="companyName">Your Company</label>

0 commit comments

Comments
 (0)