Skip to content

Commit

Permalink
Merge pull request #34 from helxplatform/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
suejinkim20 authored Nov 18, 2024
2 parents 449dbf7 + 553df28 commit 40730f6
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 14 deletions.
3 changes: 1 addition & 2 deletions src/components/hero/eduhelxHero.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import * as React from "react";
import { Box, Typography } from "@mui/material";
import { useTheme } from "@mui/material/styles";
import { MaxWidthWrapper } from "../layout/maxWidthWrapper";
import { Link } from "../link";
import { Button } from "../button";
import EduHelxLogo from "../../images/eduhelx/EduHeLx-logo.png"
const BREAKPOINT = 750;

Expand Down Expand Up @@ -39,6 +37,7 @@ export const EduHelxHero = ({ content }) => {
>
Why Choose <img
src={EduHelxLogo}
alt="EduHeLx logo"
style={{maxWidth: '300px', verticalAlign: 'middle' }}
/><br/>
in Your Classroom?
Expand Down
3 changes: 1 addition & 2 deletions src/components/layout/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const mainMenuLinks = [
slug: 'resources'
},
{
title: 'EduHelx',
title: 'EduHeLx',
slug: 'eduhelx'
}
]
Expand Down Expand Up @@ -70,7 +70,6 @@ const Toggler = ({ active, clickHandler }) => {
}

const Menu = ({mainMenuLinks}) => {
const theme = useTheme()

return (
<Fragment>
Expand Down
4 changes: 1 addition & 3 deletions src/components/sections/illustrationTextSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
import { Typography, Box, Stack } from "@mui/material";
import { styled } from "@mui/system";
import { MaxWidthWrapper } from "../layout/maxWidthWrapper";
import { useTheme } from "@emotion/react";
import { Link } from "../link"

const AboutCard = styled(Box)(({ theme }) => ({
Expand Down Expand Up @@ -45,8 +44,7 @@ const TextItem = ({section}) => (
)


export const IllustrationTextSection = ({ content, left, backgroundColor, imageSize, sx }) => {
const theme = useTheme();
export const IllustrationTextSection = ({ content, left, backgroundColor, imageSize }) => {

return (
<MaxWidthWrapper
Expand Down
2 changes: 0 additions & 2 deletions src/components/sections/testimonials.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { MaxWidthWrapper } from "../layout/maxWidthWrapper"
import { Box, IconButton, Typography, Card, CardContent } from '@mui/material';
import styled from '@emotion/styled';
import { ArrowBack, ArrowForward } from '@mui/icons-material';
import { useTheme } from "@emotion/react";

const CarouselWrapper = styled(Box)({
display: 'flex',
Expand Down Expand Up @@ -70,7 +69,6 @@ const NavigationButton = styled(IconButton)({
});

export const TestimonialSection = ({ items }) => {
const theme = useTheme();

const [currentIndex, setCurrentIndex] = useState(0);

Expand Down
2 changes: 1 addition & 1 deletion src/content/features/useCases.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const useCases = [
"heading": "EduHeLx",
"paragraph": "EduHeLx empowers students to explore the field of data science in an environment which prioritizes student investigation, focus, and cooperative discovery. EduHeLx instances are launched for each individual educator and course, making them fully customizable and unique for the students and course material. EduHeLx is currently deployed for select UNC-Chapel Hill courses.",
"linkText": "Learn about EduHeLx here",
"linkURL": "https://renci.org/blog/eduhelx-a-cloud-based-programming-platform-for-data-science-education/"
"linkURL": "/eduhelx"
},
{
"image": SciDAS,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { MaxWidthWrapper } from "../components/layout/maxWidthWrapper";
import { GoogleReCaptchaProvider } from 'react-google-recaptcha-v3'
import { FeedbackForm } from '../components/feedback-form'

export const Contact = () => {
const Contact = () => {

return (
<GoogleReCaptchaProvider
Expand Down
6 changes: 3 additions & 3 deletions src/pages/eduhelx.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { EduHelxIllustrationTextSection, FeaturesSection, HeadingSection, Testim
import { Subfooter } from '../components/layout/subfooter'
import { useTheme } from "@emotion/react";

const EduHelxPage = () => {
const EduHeLxPage = () => {
const theme = useTheme();

return (
Expand Down Expand Up @@ -49,6 +49,6 @@ const EduHelxPage = () => {
)
}

export default EduHelxPage
export default EduHeLxPage

export const Head = () => <title>EduHelx Page</title>
export const Head = () => <title>EduHeLx Page</title>

0 comments on commit 40730f6

Please sign in to comment.