Skip to content

Commit

Permalink
✨ Add info about new stream links
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshHeng committed Jun 9, 2024
1 parent a40d8cf commit eec0dc7
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 14 deletions.
10 changes: 10 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ const nextConfig = {
destination: '/team',
permanent: true,
},
{
source: '/youtube',
destination: 'https://www.youtube.com/channel/UCCFESD5QMLnlgKQjkBLuv3A',
permanent: true
},
{
source: '/stream',
destination: 'https://www.youtube.com/channel/UCCFESD5QMLnlgKQjkBLuv3A',
permanent: true
},
{
source: '/qr/d62',
destination: 'https://wsaf.org.uk/schedule?utm_campaign=schedule&utm_medium=ds&utm_source=screens',
Expand Down
53 changes: 39 additions & 14 deletions src/app/(home)/components/livestream.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FiTv } from 'react-icons/fi';
import { FiTv, FiVideo } from 'react-icons/fi';

export default function Livestream() {
return (
Expand All @@ -25,24 +25,49 @@ export default function Livestream() {
className="text-accent"
>
FAB Terrace
</a>
will be livestreamed and recorded in collaboration with{' '}
<a href="https://www.youtube.com/c/RAWVisual" className="text-accent">
</a>{' '}
will be{' '}
<a
href="https://www.youtube.com/channel/UCCFESD5QMLnlgKQjkBLuv3A"
className="text-accent"
>
livestreamed and recorded
</a>{' '}
in collaboration with{' '}
<a
href="https://www.youtube.com/@RAWVisual/streams"
className="text-accent"
>
RAW Visual
</a>
.
</p>

<a
href="https://www.youtube.com/c/RAWVisual"
target="_blank"
className="inline-block bg-tertiary px-4 py-1 rounded-sm drop-shadow-sm hover:scale-105 mb-4 mx-4"
>
<span className="text-xl uppercase font-bold">
<FiTv className="inline mr-2 mb-1" />
Watch the Livestreams
</span>
</a>
<div>
<a
href="https://www.youtube.com/channel/UCCFESD5QMLnlgKQjkBLuv3A"
target="_blank"
className="inline-block bg-tertiary px-4 py-1 rounded-sm drop-shadow-sm hover:scale-105 mb-2 mx-4"
>
<span className="text-xl uppercase font-bold">
<FiTv className="inline mr-2 mb-1" />
Watch the Livestreams
</span>
</a>
</div>

<div>
<a
href="https://www.youtube.com/@RAWVisual/streams"
target="_blank"
className="inline-block bg-tertiary px-4 py-1 rounded-sm drop-shadow-sm hover:scale-105 mb-4 mx-4"
>
<span className="text-sm uppercase font-bold">
<FiVideo className="inline mr-2 mb-1" />
Watch the Day One Recap
</span>
</a>
</div>
</section>
);
}

0 comments on commit eec0dc7

Please sign in to comment.