We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9942e commit a8e58d0Copy full SHA for a8e58d0
packages/docs/src/pages/shell.tsx
@@ -0,0 +1,12 @@
1
+import Layout from '@theme/Layout';
2
+import React from 'react';
3
+
4
+const Shell: React.FC = () => {
5
+ return (
6
+ <Layout>
7
+ <div id="shell" />
8
+ </Layout>
9
+ );
10
+};
11
12
+export default Shell;
packages/promo-pages/src/app/layout.tsx
@@ -2,8 +2,9 @@ import type {Metadata} from 'next';
import './globals.css';
export const metadata: Metadata = {
- title: 'Create Next App',
- description: 'Generated by create next app',
+ title: 'Remotion | Make videos programmatically',
+ description:
+ 'Use React to compose and render videos, and build video applications.',
};
export default function RootLayout({
0 commit comments