-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added hero video to landing page (#13)
- Loading branch information
Showing
3 changed files
with
60 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,54 @@ | ||
--- | ||
title: Build with people 💡 | ||
title: | ||
description: This is the demo site for Dot Org Theme. The title description and images front matter is required for meta og content. | ||
--- | ||
|
||
This is an example site for the [Dot Org Theme](https://github.com/cncf/dot-org-hugo-theme). The [Dot Org Theme](https://github.com/cncf/dot-org-hugo-theme) has been created for the [Hugo CMS](https://gohugo.io), and has been developed and released by the [CNCF](https://www.cncf.io), part of the [Linux Foundation](https://www.linuxfoundation.org). | ||
## HARDWARE COMMUNITY | ||
|
||
|
||
- start with a video similar to CNCF's (and information) | ||
- Projects: | ||
- Space Maker Space incluido | ||
|
||
## Copy Paste from old site | ||
|
||
### HARDWARE COMMUNITY | ||
Hardware City closes the gap between hardware startups and contract manufacturers | ||
|
||
#### HARDWARE STARTUPS | ||
### HARDWARE STARTUPS | ||
|
||
Developing hardware products is Hard! Here you can find a community that can help you during the pipeline of industrialization | ||
|
||
#### COMMUNITY OF MAKERS | ||
### COMMUNITY OF MAKERS | ||
|
||
Makers are one of the most creative communities worldwide. We want to engage this community to stimulate the creativity and share of technical skills | ||
|
||
#### INDUSTRY | ||
### INDUSTRY | ||
|
||
The step from product development to industrialization is the most difficult. We want to bridge the gap between hardware startups and the contract manufacturers | ||
|
||
--- | ||
|
||
HARDWARE PRODUCT DEVELOPMENT IS HARD. | ||
But we can help. | ||
|
||
### Mission | ||
## Mission | ||
|
||
#### WHAT IT IS | ||
### WHAT IT IS | ||
|
||
Hardware City is a community of entrepreneurs that closes the gap between hardware startups and contract manufacturers. | ||
|
||
|
||
#### MISSION | ||
### MISSION | ||
|
||
Create a community of Makers, Entrepreneurs, Industrial Organizations and Manufacturers to empower people with the means and knowledge to leverage ideas to products. | ||
|
||
Close gap between hardware startups and contract manufacturers | ||
Promote Product development | ||
Create a world class Hardware Hub for Startups. | ||
|
||
#### THE PROBLEM | ||
### THE PROBLEM | ||
|
||
Product development is hard | ||
Starting a new Hardware Startups is harder | ||
Absence of a competence Network | ||
Lack of interaction between organizations | ||
|
||
#### AREAS OF INTEREST | ||
|
||
IoT | ||
Drones | ||
3D Printing | ||
Robotics | ||
Hardware | ||
Software | ||
Wearables | ||
Beacons | ||
Spread the word | ||
### AREAS OF INTEREST | ||
|
||
- IoT | ||
- Drones | ||
- 3D Printing | ||
- Robotics | ||
- Hardware | ||
- Software | ||
- Wearables | ||
- Beacons | ||
- Spread the word |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{{ define "main" }} | ||
<style> | ||
.hero-section { | ||
color: white; | ||
|
||
h1 { | ||
color: white; | ||
font-weight: 800; | ||
} | ||
|
||
h2 { | ||
color: #79b8e5; | ||
} | ||
} | ||
|
||
video { | ||
width: 100%; | ||
height: 480px; | ||
object-fit: cover; | ||
position: absolute; | ||
z-index: -1; | ||
top: 60px; | ||
left: 0; | ||
filter: brightness(50%); | ||
} | ||
</style> | ||
|
||
<section class="hero-section" style="height: 400px;"> | ||
<h1>Building with People</h1> | ||
<h2><strong>Great things are built in community.</strong></h2> | ||
|
||
<video loop muted autoplay preload="auto" width="100%"> | ||
<source src="/videos/hero.mp4" type="video/mp4"> | ||
</video> | ||
</section> | ||
|
||
<main> | ||
{{ .Content }} | ||
</main> | ||
{{ end }} |
Binary file not shown.