Skip to content

Commit

Permalink
Finish headers for SAC and Liquids project teams.
Browse files Browse the repository at this point in the history
  • Loading branch information
Powerlated committed Aug 3, 2024
1 parent ec0f54c commit 5c91481
Show file tree
Hide file tree
Showing 13 changed files with 159 additions and 4 deletions.
Binary file added src/assets/images/projects/liquids/hero.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added src/assets/images/projects/sac/esra-logo.webp
Binary file not shown.
Binary file added src/assets/images/projects/sac/hero.jpeg
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 src/assets/images/projects/sac/sac-logo.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/widgets/Features2.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const {
} = Astro.props;
---

<WidgetWrapper id={id} isDark={isDark} containerClass={`max-w-7xl mx-auto ${classes?.container ?? ''}`} bg={bg}>
<WidgetWrapper id={id} isDark={isDark} containerClass={`lg:py-0 lg:pb-20 py-0 pb-12 max-w-7xl mx-auto ${classes?.container ?? ''}`} bg={bg}>
<Headline title={title} subtitle={subtitle} tagline={tagline} classes={classes?.headline as Record<string, string>} />
<ItemGrid2
items={items}
Expand Down
2 changes: 1 addition & 1 deletion src/components/widgets/SubteamBlurb.astro
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const {
</div>

<div class="md:basis-1/2 self-center">
<h2 class="font-bold text-2xl my-8">{title}</h2>
<h2 class="font-bold text-2xl mb-8">{title}</h2>
{content && <div class="text-lg" set:html={content} />}
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/components/widgets/SubteamHero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const {
</div>
<div class="relative max-w-7xl mx-auto px-4 sm:px-6">
<div class="pt-0 md:pt-[76px] pointer-events-none"></div>
<div class="pt-12 md:pt-20 lg:pt-0 lg:flex lg:items-center lg:mt-10 lg:gap-8">
<div class="py-12 md:pt-20 lg:pt-0 lg:flex lg:items-center lg:mt-10 lg:gap-8">
<div class="basis-1/2 text-center lg:text-left pb-10 md:pb-16 mx-auto">
{
tagline && (
Expand Down
64 changes: 64 additions & 0 deletions src/pages/projects/liquids.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
import Layout from "~/layouts/PageLayout.astro";
import SubteamHero from "~/components/widgets/SubteamHero.astro";
import SubteamBlurb from "~/components/widgets/SubteamBlurb.astro";
import Note from "~/components/widgets/Note.astro";
import Features from "~/components/widgets/Features.astro";
import Features2 from "~/components/widgets/Features2.astro";
import Steps from "~/components/widgets/Steps.astro";
import WeAreBsli from "~/components/widgets/WeAreBsli.astro";
import Content from "~/components/widgets/Content.astro";
import OurProjects from "~/components/widgets/OurProjects.astro";
import BlogLatestPosts from "~/components/widgets/BlogLatestPosts.astro";
import FAQs from "~/components/widgets/FAQs.astro";
import Stats from "~/components/widgets/Stats.astro";
import CallToAction from "~/components/widgets/CallToAction.astro";
import { getPermalink } from "~/utils/permalinks";
const metadata = {
title: "BSLI — The Ohio State University",
ignoreTitleTemplate: true,
};
---

<Layout metadata={metadata}>
<SubteamHero
image={{
src: "~/assets/images/projects/liquids/hero.jpg",
alt: "23′-24′ Liquids Team",
}}
tagline={"23′-24′ Liquids Team"}
>
<Fragment slot="title">Liquids Project</Fragment>

<Fragment slot="subtitle">
NASA SLI is part of NASA’s Artemis Student Challenges. NASA SLI is a competitive, research-based project that provides research and development support to the SLS program.
</Fragment>
</SubteamHero>

<SubteamBlurb
title="The Liquid Engine Project strives to develop liquid rocketry at Ohio State"
image={{
src: '~/assets/images/projects/liquids/in-the-field.webp',
alt: 'Liquids Rocket Engine in the Field',
}}
>
<Fragment slot="content">
<p class="mb-8">
Since the beginning, we’ve dreamed of reaching the Karmen line, but it takes a lot of work to get there. Our work in both the NASA Student Launch and Spaceport America Cup projects has helped to prepare the foundation; now it’s time to reach new heights. The liquids project works to develop student-designed engines while providing fostering students’ skills with hands-on experiences.
</p>

<p>
The liquids project has successfully test-fired a commercial LR-101 rocket engine, and work is now focused on developing their additively-manufactured Serenity engine.
</p>
</Fragment>

<Fragment slot="bg">
<div class="absolute inset-0 bg-gray-50 dark:bg-transparent"></div>
</Fragment>
</SubteamBlurb>

</Features>
</Layout>
2 changes: 1 addition & 1 deletion src/pages/projects/nasa.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const metadata = {
<SubteamHero
image={{
src: "~/assets/images/projects/nasa/hero.jpg",
alt: "Payload & Spaceport Teams",
alt: "NASA Student Launch",
}}
tagline={"23′-24′ NASA Student Launch Initiative Team"}
>
Expand Down
91 changes: 91 additions & 0 deletions src/pages/projects/sac.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
---
import Layout from "~/layouts/PageLayout.astro";
import SubteamHero from "~/components/widgets/SubteamHero.astro";
import SubteamBlurb from "~/components/widgets/SubteamBlurb.astro";
import Note from "~/components/widgets/Note.astro";
import Features from "~/components/widgets/Features.astro";
import Features2 from "~/components/widgets/Features2.astro";
import Steps from "~/components/widgets/Steps.astro";
import WeAreBsli from "~/components/widgets/WeAreBsli.astro";
import Content from "~/components/widgets/Content.astro";
import OurProjects from "~/components/widgets/OurProjects.astro";
import BlogLatestPosts from "~/components/widgets/BlogLatestPosts.astro";
import FAQs from "~/components/widgets/FAQs.astro";
import Stats from "~/components/widgets/Stats.astro";
import CallToAction from "~/components/widgets/CallToAction.astro";
import { getPermalink } from "~/utils/permalinks";
const metadata = {
title: "BSLI — The Ohio State University",
ignoreTitleTemplate: true,
};
---

<Layout metadata={metadata}>
<SubteamHero
image={{
src: "~/assets/images/projects/sac/hero.jpeg",
alt: "Spaceport America Cup Team",
}}
tagline={"23′-24′ Spaceport America Cup Team"}
>
<Fragment slot="title">Spaceport America Cup Project</Fragment>

<Fragment slot="subtitle">
NASA SLI is part of NASA’s Artemis Student Challenges. NASA SLI is a competitive, research-based project that provides research and development support to the SLS program.
</Fragment>
</SubteamHero>

<Features2
columns={3}
items={[
{
title: 'Spaceport America Cup',
description:
'The Spaceport America Cup is the largest Intercollegiate Rocket Engineering Competition. Students can launch solid, liquid, or hybrid rockets up to 10k or 30k feet.',
image: {
"src": "~/assets/images/projects/sac/sac-logo.webp",
"alt": "Spaceport America Cup Logo"
}
},
{
title: 'Spaceport America | The Space to be…™',
description:
'Spaceport America Cup is held at Spaceport America, the world’s first purpose-built commercial spaceport in Las Cruces, NM.',
image: {
"src": "~/assets/images/projects/sac/spaceport-america.webp",
"alt": "Spaceport America"
}
},
{
title: 'Experimental Sounding Rocket Association',
description:
'ESRA is a non-profit organization founded to foster and promote engineering knowledge in rocketry.',
image: {
"src": "~/assets/images/projects/sac/esra-logo.webp",
"alt": "Experimental Sounding Rocket Association Logo"
}
},
]}
/>

<SubteamBlurb
title="BSLI SAC Project team competes annually at Spaceport America"
image={{
src: '~/assets/images/projects/sac/team-at-spaceport-america.webp',
alt: 'Spaceport America Cup Project Team',
}}
>
<Fragment slot="content">
BSLI Spaceport America Cup (SAC) project team is focused on designing, manufacturing, and launching a student-built rocket. Every year, the team travels to New Mexico to compete in the Spaceport America Cup, the largest intercollegiate rocketry competition. The team competes in the 30k, Student Research and Designed (SRAD) category, meaning they design all components of a rocket to reach or get as close to 30,000 feet as possible.
</Fragment>

<Fragment slot="bg">
<div class="absolute inset-0 bg-gray-50 dark:bg-transparent"></div>
</Fragment>
</SubteamBlurb>

</Features>
</Layout>

0 comments on commit 5c91481

Please sign in to comment.