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

Update Prod #62

Merged
merged 12 commits into from
Jul 23, 2022
8 changes: 4 additions & 4 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ require('dotenv').config();
module.exports = {
siteMetadata: {
siteUrl: process.env.URL || `http://localhost`,
startDate: new Date(2022, 1, 25),
endDate: new Date(2022, 1, 27),
startDate: new Date(2022, 9, 14),
endDate: new Date(2022, 9, 16),
title: `Hack the Valley 6`,
author: author.name,
description,
keywords,
featureFlags: {
mlh: true,
mlh: false,
open: false,
discord: false,
rsvp: true,
schedule: false,
sponsors: true,
sponsors: false,
},
},
plugins: [
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const links = [
},
{
img: TwitterIcon,
to: 'https://twitter.com/hackthevalley5',
name: ' hackthevalley5 ',
to: 'https://twitter.com/hackthevalley6',
name: ' hackthevalley6 ',
},
{
img: InstagramIcon,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
display: grid;
z-index: 100;
height: 5rem;
position: fixed;
}

.section {
grid-template-columns: repeat(auto-fit, minmax(1px, max-content));
align-items: center;
margin-left: 2rem;
margin-right: 2rem;
grid-gap: 1rem;
display: grid;

Expand Down
2 changes: 1 addition & 1 deletion src/sections/Home/About/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default function About() {
color='lime'
type='body2'
>
COMING SOON Winter 2022
STARTING Oct. 14-16, 2022
</Text>
</div>
</Card>
Expand Down
22 changes: 19 additions & 3 deletions src/sections/Home/Faq/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ export const Faqs = [
<Text as='span' color='lime' type='body2'>
You'll need:&nbsp;
</Text>
A laptop and charger.
A laptop and charger. We’d also recommend a sleeping bag if you plan
to stay the night at the venue.
</p>
<p>Everything else is optional.</p>
<p>
<Text as='span' color='red' type='body2'>
You'll need:&nbsp;
You <strong>don’t</strong> need:&nbsp;
</Text>
An idea, or a team.
An idea and a team.
</p>
<p>
You can create your own team (teams of 4 recommended) during the
Expand Down Expand Up @@ -81,6 +82,21 @@ export const Faqs = [
</>
),
},
{
title: (
<>
<strong>Where</strong> is it?
</>
),
content: (
<p>
Hack the Valley 6 will be held at the University of Toronto Scarborough
campus in the IC building. All event activities will be hosted in the
building, and participants will be able to stay in the building for the
entire duration of the weekend (including overnight).
</p>
),
},
{
title: (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Home/Splash/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Splash() {
</div>
<div className={subheader}>
<Text lineHeight='relaxed' type='heading2' as='span'>
&gt; HTV POSTPONED TO FALL 2022
&gt; Oct. 14-16, 2022
</Text>
<Text
lineHeight='normal'
Expand Down
4 changes: 2 additions & 2 deletions src/sections/Home/Sponsors/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { ReactComponent as SponsorBackground } from '../../../images/sponsor.svg
import * as styles from './Sponsors.module.scss';

export default function Sponsors() {
const { sponsors, site } = useStaticQuery(query);
const sponsorsEnabled = site.siteMetadata.featureFlags.sponsors;
// const { sponsors, site } = useStaticQuery(query);
const sponsorsEnabled = false; // site.siteMetadata.featureFlags.sponsors;

return (
<Section
Expand Down