Skip to content

Commit

Permalink
Fixed broken schema on angular events page
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry-Ross committed Mar 1, 2024
1 parent 5d14a82 commit 9ea434c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .tina/__generated__/_schema.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/blocks/videoEmbed.tsx
Expand Up @@ -31,7 +31,7 @@ export const VideoEmbed = ({ data }: VideoEmbedProps) => {
<VideoModal url={data.url} overflow={data.overflow} />
{data.caption && (
<p className={classNames("font-bold", !uncentre && "text-centre")}>
Video: {data.caption} ({data.duration})
Video: {data.caption} {data.duration && <>({data.duration})</>}
</p>
)}
<div></div>
Expand Down
18 changes: 17 additions & 1 deletion content/events/angular-superpowers-tour.mdx
Expand Up @@ -109,7 +109,23 @@ _body:
eventURL: /events/angular-workshop
_template: PresenterBlock
- title: ''
content: "<VideoEmbed url=\"https://youtu.be/X2ZQRz0YJqo\" caption=\"Angular Superpowers Tour - Learn to build real-world Angular Apps\" duration="3 mins" />\n\n**This 1-day course brings developers up-to-speed on the new features and benefits of using Angular to build awesome web applications.**\n\nEverything has changed! Angular and modern web best practices involve massive changes in how we build modern web applications.\n\nAt SSW we have already gone through the hard work of implementing these new and exciting technologies in our projects for everything from small start-ups to enterprises and government agencies. View our\_[Angular consulting page](https://www.ssw.com.au/ssw/Consulting/Angular.aspx).\n\nCome watch our best Angular devs build an Angular application from scratch and take it all the way to an enterprise application using all the best tools and practices.\n\nDon't waste weeks learning Angular, the Angular CLI, RxJS, TypeScript, ngrx, NPM, WebPack, end to end testing and unit testing. Get your head around all the core concepts and get jump started in just one day.\n"
content: >-
<VideoEmbed url="https://youtu.be/X2ZQRz0YJqo" caption="Angular Superpowers Tour - Learn to build real-world Angular Apps" duration="3 mins" />
**This 1-day course brings developers up-to-speed on the new features and benefits of using Angular to build awesome web applications.**
Everything has changed! Angular and modern web best practices involve massive changes in how we build modern web applications.
At SSW we have already gone through the hard work of implementing these new and exciting technologies in our projects for everything from small start-ups to enterprises and government agencies. View our [Angular consulting page](https://www.ssw.com.au/ssw/Consulting/Angular.aspx).
Come watch our best Angular devs build an Angular application from scratch and take it all the way to an enterprise application using all the best tools and practices.
Don't waste weeks learning Angular, the Angular CLI, RxJS, TypeScript, ngrx, NPM, WebPack, end to end testing and unit testing. Get your head around all the core concepts and get jump started in just one day.
size: lg
align: center
_template: Content
Expand Down

0 comments on commit 9ea434c

Please sign in to comment.