Skip to content

Commit

Permalink
making progress
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaayscough committed Aug 23, 2023
1 parent e44a2f4 commit 175fda6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 3 additions & 5 deletions components/content_embed.js → components/content_embed.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "./content_embed.css"
// components/content_embed.tsx

function ContentEmbed({ url }) {
export default function ContentEmbed({ url }: { url: string }) {
return (
<div className="contentEmbed">
<div className="embedContainer">
Expand All @@ -16,6 +16,4 @@ function ContentEmbed({ url }) {
</div>
</div>
)
}

export default ContentEmbed
}
6 changes: 5 additions & 1 deletion portfolio/unearthed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ abstract: Video game/animation developed by the Red Team at the Big Rock School.
role: Composer, Sound Designer
date: 2022-08-20
client: Big Rock School
---
---

import ContentEmbed from "components/content_embed.tsx"

<ContentEmbed url="https://www.youtube.com/embed/OyU26_EKOxU" />
2 changes: 1 addition & 1 deletion src/app/page.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ContentEmbed from "../../components/content_embed.js"
import ContentEmbed from "components/content_embed.tsx"
import "./page.css"

export default function Home() {
Expand Down

0 comments on commit 175fda6

Please sign in to comment.