Skip to content

Commit

Permalink
Fixes here and there
Browse files Browse the repository at this point in the history
  • Loading branch information
Powerlated committed Aug 4, 2024
1 parent 988b32b commit a522fe4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/components/ui/WidgetWrapper.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const WrapperTag = as;
</div>
<div
class:list={[
twMerge('relative mx-auto max-w-7xl px-4 md:px-6 py-8 md:py-12 lg:py-16 text-default', containerClass),
twMerge('relative mx-auto max-w-7xl px-4 md:px-6 py-4 md:py-8 lg:py-12 text-default', containerClass),
{ dark: isDark },
]}
>
Expand Down
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={`lg:py-0 py-0 max-w-7xl mx-auto ${classes?.container ?? ''}`} bg={bg}>
<WidgetWrapper id={id} isDark={isDark} containerClass={`lg:pt-0 pt-0 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/pages/projects/liquids.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const metadata = {
<Fragment slot="title">Liquids Project</Fragment>

<Fragment slot="subtitle">
The liquids project works to develop student-designed engines while providing fostering students’ skills with hands-on experiences.
Our liquids project works to develop student-designed engines while fostering students’ skills with hands-on experiences.
</Fragment>
</SubteamHero>

Expand Down
27 changes: 13 additions & 14 deletions src/pages/projects/nasa.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,27 @@ const metadata = {
---

<Layout metadata={metadata}>
<SubteamHero
image={{
src: "~/assets/images/projects/nasa/hero.jpg",
alt: "NASA Student Launch",
}}
tagline={"23′-24′ NASA Student Launch Initiative Team"}
>
<Fragment slot="title">NASA Student Launch 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>
<SubteamHero
image={{
src: "~/assets/images/projects/nasa/hero.jpg",
alt: "NASA Student Launch",
}}
tagline={"23′-24′ NASA Student Launch Initiative Team"}
>
<Fragment slot="title">NASA Student Launch Project</Fragment>

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

<Features2
columns={2}
items={[
{
title: 'NASA Artemis Challenge',
description:
'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.',
'We are 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.',
image: {
"src": "~/assets/images/projects/nasa/Artemis_Logo_NASA.webp",
"alt": "NASA Artemis Logo"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/projects/sac.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const metadata = {
<Fragment slot="title">Spaceport America Cup Project</Fragment>

<Fragment slot="subtitle">
We participate in the world’s largest Intercollegiate Rocket Engineering Competition, where students can launch solid, liquid, or hybrid rockets to 10k or 30k feet.
We participate in the <b>Spaceport America Cup</b>, the world’s largest Intercollegiate Rocket Engineering Competition, where students can launch solid, liquid, or hybrid rockets to 10k or 30k feet.
</Fragment>
</SubteamHero>

Expand Down

0 comments on commit a522fe4

Please sign in to comment.