Skip to content

Commit

Permalink
Kvaaketi
Browse files Browse the repository at this point in the history
  • Loading branch information
pekkis committed Nov 11, 2023
1 parent a0640db commit 2244882
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/services/audio.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export type QuackCastAudio = {
title: string;
url: string;
attribution: string;
};

export const quackCast: QuackCastAudio = {
title: "Kvaakcast",
url: "https://hardcore-react-training.s3.eu-north-1.amazonaws.com/kvaakcast.ogg",
attribution:
"https://en.wikipedia.org/wiki/File:Mallard_(Anas_platyrhynchos)_(W1CDR0001518_BD17).ogg"
};
20 changes: 20 additions & 0 deletions src/services/video.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export type QuackTubeVideo = {
title: string;
url: string;
attribution: string;
};

export const videos: QuackTubeVideo[] = [
{
title: "Musta joutsen",
url: "https://hardcore-react-training.s3.eu-north-1.amazonaws.com/black-swan.webm",
attribution:
"The Nature Box, CC BY-SA 4.0 <https://creativecommons.org/licenses/by-sa/4.0>, via Wikimedia Commons"
},
{
title: "Quaak Quaak! Qaak!",
url: "https://hardcore-react-training.s3.eu-north-1.amazonaws.com/mallard.webm",
attribution:
"https://en.wikipedia.org/wiki/File:Canard_colvert_femelle_et_ses_petits_(Lac_Archambault,_Qc).webm"
}
];

1 comment on commit 2244882

@vercel
Copy link

@vercel vercel bot commented on 2244882 Nov 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.