diff --git a/website/src/components/ClientCode.tsx b/website/src/components/ClientCode.tsx index e9f6f7e3..6eefa3ac 100644 --- a/website/src/components/ClientCode.tsx +++ b/website/src/components/ClientCode.tsx @@ -41,16 +41,14 @@ export default function ClientCode({ code, lang, className }: ClientCodeProps) { } const html = hastToHtml(hast); - const { class: preClassName, style: _preStyle, ...restPreProps } = preProps; - const { class: codeClassName, style: _codeStyle, ...restCodeProps } = codeProps; + const { class: preClassName } = preProps; + const { class: codeClassName } = codeProps; return (
       
   
-    
+    {/* Global Metadata */}
     
     
     
@@ -32,39 +32,38 @@ const fullTitle = Array.isArray(title)
     
     
 
-    
+    {/* Important stuff */}
     
 
-    
+    {/* Font preloads */}
     
     
 
-    
+    {/* Canonical URL */}
     
 
-    
+    {/* Primary Meta Tags */}
     {fullTitle}
     
     
 
-    
+    {/* Open Graph / Facebook */}
     
     
     
     
     {image && }
 
-    
+    {/* Twitter */}
     
     
     
     
     {image && }
 
-    
+    {/* Whatever else */}
     
   
-  
   
+    {/* BaseUI requires body.relative and div.isolate */}
     
diff --git a/website/src/pages/index.astro b/website/src/pages/index.astro index f5233a6c..0cf45381 100644 --- a/website/src/pages/index.astro +++ b/website/src/pages/index.astro @@ -52,14 +52,14 @@ const poster = `https://image.mux.com/${PLAYBACK_ID}/thumbnail.webp?time=0`;

Assemble your player

Feel at home with your framework, skin, and media source

- +

Take full control

Make your player truly your own with fully-editable components

- +
diff --git a/website/src/styles/globals.css b/website/src/styles/globals.css index 9be5c32f..6828f1fc 100644 --- a/website/src/styles/globals.css +++ b/website/src/styles/globals.css @@ -120,10 +120,10 @@ --animate-marquee: marquee 40s linear infinite; @keyframes marquee { from { - transform: translate3d(0, 0, 0); + transform: translate3d(-50%, 0, 0); } to { - transform: translate3d(-50%, 0, 0); + transform: translate3d(0, 0, 0); } } }