diff --git a/src/components/video/player.astro b/src/components/video/player.astro
new file mode 100644
index 0000000..b208964
--- /dev/null
+++ b/src/components/video/player.astro
@@ -0,0 +1,63 @@
+---
+import Poster from './poster.astro'
+import Timestamps from './timestamps.astro'
+
+const {
+ video,
+ width = '325px',
+ classes = 'w-full flex-shrink-0 flex-grow-0 border-2 border-transparent rounded-2xl overflow-hidden'
+} = Astro.props
+
+---
+
+
+
+
+
+
+
+
+
+