-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
83 lines (71 loc) · 2.73 KB
/
Copy pathindex.js
File metadata and controls
83 lines (71 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// import Head from 'next/head'
import { Landing } from '../components/landing.jsx'
import { TriCol } from '../components/tricol'
import { GraphicTab } from '../components/graphictab'
import { Testimonials } from '../components/testimonials'
import { Navbar } from '../components/navbar'
import { Footer } from '../components/footer'
import { NextSeo } from 'next-seo'
const title = "Bit Project"
const description = "We provide cutting-edge, open source learning experiences to prepare students for careers in tech."
const url = "https://www.bitproject.org/"
export default function HomePage() {
return (
<>
<NextSeo
title={title}
description={description}
canonical={url}
openGraph={{
url,
title,
description,
images: [
{
url: 'https://www.bitproject.org/_next/image?url=%livecode.png&w=2048&q=75',
alt: 'Bit Project Live Coding',
type: 'image/png',
},
],
}}
/>
<Navbar />
<Landing
heading="We equip students with technical superpowers"
description="We provide cutting-edge, open source learning experiences to prepare students for careers in tech."
formActionButton="Sign Up"
image="/main.gif"
formResponse="Thanks! See you soon 👋"
/>
<TriCol
heading1="Free & Open Source"
para1="Our courses are open source and free for all because we believe in the power of accessible technical education."
heading2="Built with the Industry"
para2="Engineers mentor our students through pair programming sessions. They share insights on job search and engineering best practices."
heading3="Built for students, by students"
para3="We are a global student organization developing interactive, engaging technical content for other students."
/>
<GraphicTab
heading="We empower students to ship their first projects"
desc="Getting started with a project is hard! Bit Project teaches students how to code by building."
pic1="/fifi.jpeg"
name1="Fifi Teklemedhin"
title1="11th Grade"
graphic1="https://vimeo.com/570820559"
pic2="/anita.jpeg"
name2="Anita Padman" // need to change to promo video. this one is about serverless
title2="Junior at UIC"
graphic2="https://vimeo.com/572033757"
pic3="/emily.png"
name3="Emily Chen"
title3="11th Grade"
graphic3="https://vimeo.com/572255574"
/>
<Testimonials
heading="We make a difference"
desc="Take a look at what our students have to say."
/>
<Footer />
</>
)
}