Skip to content

Commit

Permalink
Merge pull request #12 from helios-pipeline/fix/font-styling
Browse files Browse the repository at this point in the history
fix: adjusted font-styling and added logo to home page
  • Loading branch information
jamesdrabinsky authored Aug 20, 2024
2 parents 6bcd139 + ad7a832 commit 261dab7
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
18 changes: 9 additions & 9 deletions docs/.vitepress/theme/components/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ export default {
<div id="stars3"></div>
<div class="body">
<header>
<div class="logo">Helios</div>
<!-- <div class="logo">Helios</div> -->
<img class="logo" src="/home/helios_icon_white.png">
<nav>
<ul>
<li><a href="/case-study/about-us">Team</a></li>
Expand All @@ -101,9 +102,7 @@ export default {
<section class="hero">
<h1>Helios</h1>
<p>
Helios is an open-source platform designed to simplify the
visualization and analysis of real-time event streams by exposing data
for SQL querying.
An open-source, real-time query platform for visualizing and analyzing event streams.
</p>
<button>View Case Study</button>
</section>
Expand All @@ -123,8 +122,6 @@ export default {
</div>
</section>
<section class="content-section cli">
<!-- <img class="box image" src="/home/terminal.png">
</img> -->
<video class="video" width="500" height="500" autoplay loop muted>
<source src="/home/helios-cli.mp4" type="video/mp4">
</video>
Expand All @@ -147,7 +144,7 @@ export default {
<style scoped>
/* General Body */
.body {
font-family: 'Lato', Arial, sans-serif;
font-family: 'Manrope', Arial, sans-serif;
background-color: #1a202c;
color: #ffffff;
margin: 0;
Expand All @@ -174,6 +171,9 @@ header {
.logo {
font-size: 1.5rem;
font-weight: bold;
/* position: absolute; */
width: 70px;
height: 70px;
}
/* Navigation */
Expand Down Expand Up @@ -321,8 +321,8 @@ main::after {
/* Hero Text */
.hero h1 {
font-size: clamp(2.5rem, 0.3125rem + 3.75vw, 6rem);
font-weight: 600;
font-size: clamp(3rem, 4.5vw, 5rem);
font-weight: 700;
margin-bottom: 1rem;
opacity: var(--sds-size-stroke-border);
padding: 2.5rem;
Expand Down
2 changes: 2 additions & 0 deletions docs/.vitepress/theme/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import DefaultTheme from "vitepress/theme";
import VueTippy from "vue-tippy";
import "tippy.js/dist/tippy.css";
import "./styles/custom.css";
import "./styles/fonts.css";

import * as components from "./components";

export default {
Expand Down
9 changes: 9 additions & 0 deletions docs/.vitepress/theme/styles/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap');

h1 {
font-family: 'Inter', sans-serif
}
body {
font-family: 'Manrope', sans-serif;
}
6 changes: 5 additions & 1 deletion docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ At its core, Helios is comprised of:
<p><Icon name="CommandLineIcon" /><span>Helios CLI: configures Helios deployment with AWS credentials; deploys the entire Helios stack to AWS using a single command; and destroys the stack when needed. We will go into more detail within the Automating Deployment section.</span></p>
</div>

![CLI](/case_study/cli_dropshadow.png)
<!-- ![CLI](/case_study/cli_dropshadow.png) -->

<video class="video" width="500" height="500" autoplay loop muted style="border-radius: 5px; box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);">
<source src="/home/helios-cli.mp4" type="video/mp4">
</video>

As with any tool, the suitability of Helios depends on each team's specific requirements, existing infrastructure, and resources. We encourage potential users to evaluate how our offering aligns with their particular needs and constraints.

Expand Down
Binary file added docs/public/home/github-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/public/home/helios_icon_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 261dab7

Please sign in to comment.