File size: 348 Bytes
5f685fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Layout from '@theme/Layout';
import React from 'react';

import Home from '../components/Home';

function HomePage() {
  return (
    <Layout
      title="ShortGPT: Automate Content Creation with AI"
      description="Automating video and short content creation with AI "
    >
      <Home />
    </Layout>
  );
}

export default HomePage;