Add QGSS 2022 to learn page (#2798)

* Add summer school 2022 card

* Add GQSS22 to learn page

* Add summer schools to mega menu

* Update summer school 2022 header

* Add margins to header

* Update missed references

* Update links

Co-authored-by: Randy <randytolentino@ibm.com>
Co-authored-by: Eddybrando Vásquez <eddybrando.vasquez@gmail.com>
Co-authored-by: //va <vabarbosa@users.noreply.github.com>
This commit is contained in:
Frank Harkins 2022-10-20 18:09:10 +01:00 committed by GitHub
parent d4178b6435
commit cd65f7684e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 173 additions and 1 deletions

View File

@ -269,6 +269,16 @@ export default class StartLearningSection extends Vue {
title: 'Summer schools',
description: 'The Qiskit Global Summer Schools are one-of-a-kind sequences that takes students from beginner level to solving advanced quantum problems on a quantum computer. These two-week courses are designed to empower the next generation of quantum developers with the knowledge to explore quantum applications on their own.',
courses: [
{
image: '/images/learn/summer-school/quantum-simulation-summer-school-2022/header.png',
title: 'Quantum Simulations (2022)',
description: 'This summer school provides a focused introduction to quantum computing and its applications to quantum simulation, with a specific focus on quantum chemistry. These lectures were first released as part of a two-week intensive summer school in July 2022.',
cta: {
label: 'Go to this resource',
url: '/learn/summer-school/quantum-simulation-summer-school-2022',
segment: { cta: 'quantum-simulation-summer-school-2022', location: 'summer-schools' }
}
},
{
image: '/images/learn/summer-school/quantum-computing-and-quantum-learning-2021/header.png',
title: 'Quantum Computing & Quantum Machine Learning (2021)',

View File

@ -53,7 +53,8 @@ enum StartLearningUrl {
Introduction = 'https://learn.qiskit.org/course/introduction',
QML = 'https://learn.qiskit.org/course/machine-learning',
SummerSchool2020 = 'https://learn.qiskit.org/summer-school/2020/',
SummerSchool2021 = 'https://learn.qiskit.org/summer-school/2021/'
SummerSchool2021 = 'https://learn.qiskit.org/summer-school/2021/',
SummerSchool2022 = 'https://learn.qiskit.org/summer-school/2022/'
}
enum PrerequisitesUrl {

View File

@ -0,0 +1,161 @@
<script lang="ts">
import { Course, Prerequisite } from 'constants/learnContent'
import { Component } from 'vue-property-decorator'
import CourseOverviewPage from '~/components/logic/CourseOverviewPage.vue'
import { GeneralLink, StartLearningUrl } from '~/constants/appLinks'
@Component({
head: () => ({
title: '2022 Qiskit global summer school on quantum simulation'
})
})
export default class SummerSchoolCoursePage extends CourseOverviewPage {
routeName: string = 'summer-school/quantum-simulation-summer-school-2022'
headerTitle = '2022 Qiskit global summer school on quantum simulation'
headerDescription = [
`This summer school provides a focused introduction to quantum computing
and its applications to quantum simulation, with a specific focus on
quantum chemistry. These lectures were first released as part of a two-week
intensive summer school in July 2022. This course contains 9 lectures
(split over 19 videos totalling ~17 hours) and 4 labs.`
]
headerImg = '/images/learn/summer-school/quantum-simulation-summer-school-2022/header.png'
backToTextbookHomeLink: GeneralLink = {
url: '/learn',
label: 'Home',
segment: {
cta: 'back-to-textbook-home', location: 'header'
}
}
startLearningCTA: GeneralLink = {
url: StartLearningUrl.SummerSchool2022,
label: 'Start learning',
segment: {
cta: 'introduction', location: 'header'
}
}
courses: Course[] = [
{
image: 'QGSS-Lec1-CoverImage.png',
label: 'History of Quantum Computing and Motivation for Quantum Simulation',
segment: { cta: 'lecture-1', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/history-quantum-computing-motivation-quantum-simulation'
},
{
image: 'QGSS-Lec2-CoverImage.png',
label: 'Introduction to Linear Algebra, Prerequisite Mathematics, and Circuit Composition',
segment: { cta: 'lecture-2', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/introduction-linear-algebra-prerequisite-mathematics-circuit-composition'
},
{
image: 'QGSS-Lab1-CoverImage.png',
label: 'Lab 1',
segment: { cta: 'lab-1', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/lab-1'
},
{
image: 'QGSS-Lec3-CoverImage.png',
label: 'Hamiltonian Time Evolution',
segment: { cta: 'lecture-3', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/hamiltonian-time-evolution'
},
{
image: 'QGSS-Lec4-CoverImage.png',
label: 'Simulation Problems',
segment: { cta: 'lecture-4', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/simulation-problems'
},
{
image: 'QGSS-Lab2-CoverImage.png',
label: 'Lab 2',
segment: { cta: 'lab-2', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/lab-2'
},
{
image: 'QGSS-Lec5-CoverImage.png',
label: 'Noisy Real Hardware, Noise in Quantum Computers',
segment: { cta: 'lecture-5', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/noisy-real-hardware-noise-quantum-computers'
},
{
image: 'QGSS-Lec6-CoverImage.png',
label: 'Broad Overview of Quantum Chemistry Simulation and Why it is a Challenge',
segment: { cta: 'lecture-6', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/broad-overview-quantum-chemistry-simulation-why-is-challenge'
},
{
image: 'QGSS-Lab3-CoverImage.png',
label: 'Lab 3',
segment: { cta: 'lab-3', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/lab-3'
},
{
image: 'QGSS-Lec7-CoverImage.png',
label: 'Methods for Quantum Simulation',
segment: { cta: 'lecture-7', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/methods-quantum-simulation'
},
{
image: 'QGSS-Lec8-CoverImage.png',
label: 'Quantum Static Simulation',
segment: { cta: 'lecture-8', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/quantum-static-simulation'
},
{
image: 'QGSS-Lab4-CoverImage.png',
label: 'Lab 4',
segment: { cta: 'lab-4', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/lab-4'
},
{
image: 'QGSS-Lec9-CoverImage.png',
label: 'Quantum Dynamics',
segment: { cta: 'lecture-9', location: 'summer-school-2022' },
url: 'https://learn.qiskit.org/summer-school/2022/quantum-dynamics'
}
]
references: string[] = []
links: GeneralLink[] = []
prerequisites: Prerequisite[] = [
{
title: 'Multiplying matrices by matrices',
description:
'In order to make the best out of these lectures, we recommend you are comfortable with linear algebra. In this short video series, Sal Khan talks you through matrix multiplication.',
segment: {
cta: 'khan-academy-matrix-multiplication', location: 'related-material'
},
url:
'https://www.khanacademy.org/math/precalculus/x9e81a4f98389efdf:matrices/x9e81a4f98389efdf:multiplying-matrices-by-matrices/v/matrix-multiplication-intro'
},
{
title: 'Get started with Qiskit and Jupyter',
description:
'These pages will help you set up your environement to work with Qiskit, and give you a quick overview of Python and Jupyter notebooks.',
segment: {
cta: 'ch-prerequisites', location: 'related-material'
},
url:
'https://learn.qiskit.org/course/ch-prerequisites/'
},
{
title: 'Introduction course (optional)',
description:
'This short course for audiences of all backgrounds fills you in on key concepts in on the basic ideas behind quantum computing.',
segment: {
cta: 'introduction-course', location: 'related-material'
},
url:
'https://qiskit.org/learn/course/introduction-course'
}
]
imageUrlBase = '/images/learn/summer-school/quantum-simulation-summer-school-2022'
}
</script>

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 491 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 781 KiB