Skip to content

Commit

Permalink
added hero video to landing page (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcorreia authored Feb 5, 2024
1 parent 2e9e4ba commit c5e52eb
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 33 deletions.
53 changes: 20 additions & 33 deletions content/en/_index.md
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
40 changes: 40 additions & 0 deletions layouts/index.html
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 added static/videos/hero.mp4
Binary file not shown.

0 comments on commit c5e52eb

Please sign in to comment.