-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLayout.tsx
75 lines (71 loc) · 1.67 KB
/
Layout.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React, { PropsWithChildren } from 'react';
import { NextSeo } from 'next-seo';
import { motion } from 'framer-motion';
import { Container } from '@chakra-ui/react';
import Nav from './Navbar';
import Footer from './Footer';
type Props = {
title: string;
description?: string;
};
const variants = {
hidden: { opacity: 0, x: -200, y: 0 },
enter: { opacity: 1, x: 0, y: 0 },
exit: { opacity: 0, x: 0, y: -100 },
};
const Layout = ({ children, title, description }: PropsWithChildren<Props>) => (
<div>
<NextSeo
title={title.replace('<br /> ', '')}
description={description}
openGraph={{
title,
description,
type: 'website',
locale: 'en_US',
url: 'https://onlyformats.netlify.app',
site_name: 'Only Formats',
images: [
{
url: 'https://onlyformats.netlify.app/logo.png',
width: 100,
height: 100,
alt: 'Og Image Alt',
},
],
}}
twitter={{
handle: '@MaxProgramming1',
cardType: 'summary',
}}
additionalLinkTags={[
{
rel: 'icon',
href: '/favicon.ico',
},
{
rel: 'apple-touch-icon',
href: '/apple-touch-icon.png',
},
{
rel: 'manifest',
href: '/manifest.json',
},
]}
/>
<Nav />
<Container maxW='full'>
<motion.main
initial='hidden'
animate='enter'
exit='exit'
variants={variants}
transition={{ type: 'linear' }}
>
{children}
</motion.main>
</Container>
{/* <Footer /> */}
</div>
);
export default Layout;