Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add basic Aerie landing page #82

Merged
merged 39 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
462dcf8
Add basic Aerie landing page
camargo Sep 1, 2023
a6f5736
update content feature section and header
lklyne Nov 10, 2023
2065169
add feature images
lklyne Nov 28, 2023
211e282
update hero alignment and button styles
lklyne Nov 28, 2023
6bd8f56
update secondary color palette and font
lklyne Nov 28, 2023
090bc92
add feature cards
lklyne Nov 28, 2023
ff41124
add testimonials
lklyne Nov 30, 2023
46eb3b8
generalize features component, add get started
lklyne Dec 1, 2023
08917e8
tighten max width
lklyne Dec 1, 2023
94194c5
add and organize images
lklyne Dec 7, 2023
118d712
add logos section
lklyne Dec 7, 2023
f9139b1
add video section
lklyne Dec 7, 2023
26f8e01
add more homepage sections
lklyne Dec 7, 2023
ce7f6c2
style and image tweaks
lklyne Dec 7, 2023
943c274
add learn more section
lklyne Dec 10, 2023
fdb663e
update images and spacing
lklyne Dec 19, 2023
10a8b01
update logos
lklyne Dec 21, 2023
c5763bb
add logos and light dark variants and adjust responsive styles
lklyne Dec 22, 2023
2b90415
swap placeholder links in cards
lklyne Dec 22, 2023
7517cf4
add footer links and styles
lklyne Dec 22, 2023
dcecc98
hero typography updates
lklyne Dec 22, 2023
24a9913
remove bullets from lists
lklyne Dec 22, 2023
80440cd
fix transparency issue
lklyne Dec 22, 2023
8a713e6
add ammos info to footer
lklyne Dec 22, 2023
8fbe8d4
update header copy and contact link
lklyne Dec 22, 2023
e9ee604
hide testimonials section and duplicate links
lklyne Jan 16, 2024
c24ad1b
reduce spacing between sections
lklyne Jan 16, 2024
88e30da
clean up comments
lklyne Jan 16, 2024
8523eac
update ui screenshot
lklyne Jan 29, 2024
6b39323
copy editing per feedback
lklyne Jan 29, 2024
6532076
fix video layout bugs and improve responsiveness
lklyne Jan 29, 2024
d1f4623
update site description and title, add video
lklyne Jan 29, 2024
ff80d80
remove unused assets
lklyne Jan 29, 2024
6ad53dd
update order of tagline
lklyne Jan 29, 2024
a30763d
remove comments
lklyne Jan 29, 2024
b66de8f
fix how video is imported
lklyne Jan 29, 2024
425411a
hide video, remove more comments and assets
lklyne Feb 27, 2024
9866870
Add promo video and still image for preview
lklyne Mar 4, 2024
fb578d7
adjust padding for logo sections
lklyne Mar 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/HomepageCards/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const FeatureList = [
description: (
<>
Model your system with access to the entire Java ecosystem. Validate plans against your models using Aerie's
discrete event simulator using the user interface or Aerie API.
discrete event simulator through the user interface or Aerie API.
</>
),
},
Expand Down
9 changes: 5 additions & 4 deletions src/components/HomepageVideo/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: auto;
border-top: 1px solid var(--ifm-color-secondary-light);
border-bottom: 1px solid var(--ifm-color-secondary-light);
width: auto;
margin-left: 1rem;
margin-right: 1rem;
/* border-top: 1px solid var(--ifm-color-secondary-light);
border-bottom: 1px solid var(--ifm-color-secondary-light); */
Mythicaeda marked this conversation as resolved.
Show resolved Hide resolved
/* background-color: red; */
border-radius: 0.5rem;
overflow: hidden;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ function HomepageHeader() {
export default function Home() {
const { siteConfig } = useDocusaurusContext();
return (
<Layout title={`Hello from ${siteConfig.title}`} description="Description will go into a meta tag in <head />">
<Layout title={`Home`} description="Planning, sequencing, and scheduling tools for modern space missions.">
<HomepageHeader />
<main className={styles.siteBackground}>
{/* <HomepageVideo /> */}
<HomepageVideo />
<h2 className={styles.sectionHeader}>Features</h2>
<HomepageFeatures />
{/* <HomepageTestimonials /> */}
Expand Down
27 changes: 24 additions & 3 deletions src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
letter-spacing: -1.5px;
line-height: 110%;
font-weight: 700;
font-size: 4rem;
font-size: 3.5rem;
orphans: 2;
padding-bottom: 2rem;
color: var(--ifm-color-secondary-darker);
Expand All @@ -35,11 +35,17 @@
}
.heroTitle {
/* color: red; */
letter-spacing: -1px;
font-size: 2.75rem;
}
}

@media screen and (max-width: 640px) {
.heroTitle {
letter-spacing: 0px;
font-size: 1.75rem;
}
}

.buttons {
display: flex;
align-items: center;
Expand All @@ -48,9 +54,18 @@
gap: 1rem;
}

@media screen and (max-width: 640px) {
.buttons {
flex-direction: column;
align-items: normal;
}
}

.imgFullscreen {
padding-top: 6rem;
margin-top: 6rem;
width: 100%;
border-radius: 4px;
box-shadow: var(--card-shadow);;
}

.heroButton {
Expand All @@ -72,6 +87,12 @@
margin-bottom: 1rem;
}

@media screen and (max-width: 640px) {
.tagline {
display: none;
}
}

.sectionHeader {
font-size: 3rem;
text-align: center;
Expand Down
4 changes: 2 additions & 2 deletions static/img/aerie-ui-light.png
lklyne marked this conversation as resolved.
Show resolved Hide resolved
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
149 changes: 0 additions & 149 deletions static/img/cards/aerie-feature-mission-modeling-light.svg
lklyne marked this conversation as resolved.
Outdated
Show resolved Hide resolved

This file was deleted.

165 changes: 0 additions & 165 deletions static/img/cards/aerie-feature-planning-commanding-light.svg

This file was deleted.

3 changes: 0 additions & 3 deletions static/img/missions/mission-europa-clipper-light.png
lklyne marked this conversation as resolved.
Outdated
Show resolved Hide resolved

This file was deleted.

171 changes: 0 additions & 171 deletions static/img/undraw_docusaurus_mountain.svg
lklyne marked this conversation as resolved.
Outdated
Show resolved Hide resolved

This file was deleted.

170 changes: 0 additions & 170 deletions static/img/undraw_docusaurus_react.svg

This file was deleted.

40 changes: 0 additions & 40 deletions static/img/undraw_docusaurus_tree.svg

This file was deleted.

Loading