Skip to content
This repository was archived by the owner on Feb 28, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 10 additions & 4 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />

<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<meta property="og:title" content="Hack Club" />
<meta property="og:description" content="The worldwide movement of student-led coding clubs." />
<meta property="og:type" content="website" />
<meta property="og:image" content="%PUBLIC_URL%/og/image.jpg" />
<meta property="og:url" content="https://hackclub.com" />

<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
Expand Down
Binary file added frontend/public/og/image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions frontend/src/containers/App/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React, { Component } from 'react'
import Helmet from 'react-helmet'
import config from '../../config'

const styles = {
height: '100%',
Expand All @@ -11,7 +9,6 @@ class App extends Component {
render() {
return (
<div style={styles}>
<Helmet {...config.app.head} />
{this.props.children}
</div>
)
Expand Down