blob: 25ecc51c003af8f03160b777581b72d9ab09c7c0 [file]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenServerless Landing</title>
<style>
body {
margin: 0;
padding: 40px 20px;
font-family: Arial, sans-serif;
background-color: white;
text-align: center;
}
img {
max-width: 300px;
}
.button-row {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.button {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
color: white;
text-decoration: none;
font-weight: bold;
cursor: pointer;
}
.linkedin {
background-color: #0077b5;
}
.discord {
background-color: #5865f2;
}
.button img {
width: 20px;
height: 20px;
}
.textarea-row {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.install-box {
width: 40%;
display: flex;
flex-direction: column;
align-items: center;
}
.install-box label {
font-weight: bold;
margin-bottom: 8px;
}
textarea {
width: 90%;
height: 60px;
font-family: monospace;
font-size: 14px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
resize: none;
}
</style>
</head>
<body>
<h1>Welcome to</h1>
<img src="os-logo-full-vertical-bg-white.png" alt="OpenServerless Logo" />
<div class="button-row">
<img width="50" height="50" src="linkedin.png" alt="LinkedIn Icon" />
<a class="button linkedin" href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fopenserverless.apache.org%2F"
target="_blank">
Share on LinkedIn
</a>
<img width="50" height="50" src="discord.png" alt="Discord Icon" />
<a class="button discord" href="https://bit.ly/openserverless-discord" target="_blank">
Join Us on Discord
</a>
</div>
</body>
</html>